diff --git a/.gitignore b/.gitignore index 7e2e97c..f31942c 100644 --- a/.gitignore +++ b/.gitignore @@ -414,3 +414,7 @@ FodyWeavers.xsd # Built Visual Studio Code Extensions *.vsix + +# LittleSim +Cache/ + diff --git a/CLAUDE.md b/CLAUDE.md index e23aa48..d3db751 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -16,7 +16,9 @@ Game design docs live in `docs/` and are written in **Russian**. Engine rules li ``` engine/ mrgameeng git submodule (own repo, own CLAUDE.md) src/LittleSim the game (net8.0); references engine projects directly -docs/ концепт, симуляция, roadmap (Russian) +Mods/Core the game's own content as a mod: About, Defs, Languages, Textures +Cache/ runtime-built atlases (gitignored) +docs/ концепт, симуляция, моды, roadmap (Russian) LittleSim.sln game + engine sources + engine tests — one window for everything ``` @@ -29,18 +31,19 @@ dotnet run --project src/LittleSim -c Release # measure perf in Release only dotnet test LittleSim.sln # runs the engine test suites ``` -## Texture atlases +## Content and mods -Source images live in `textures/` (committed); the game only loads packed atlases from -`src/LittleSim/Assets/Atlases` (also committed — the asset generator emits -`GameAssets.Atlases.*` handles for them). After changing `textures/`, rebuild with: +All game content is data in mods (`MrGameEng.Mods`): the game itself ships as the +`Core` mod. `Mods/Core/Defs` holds JSON defs (terrain, plants, pawns — see +`docs/mods.md`), `Mods/Core/Languages/{ru,en}` holds UI strings (default language is +`ru`), `Mods/Core/Textures` holds source images. New mechanics get defs + localization +keys, not hardcoded arrays; UI strings go through `LanguageManager`, never inline. -``` -dotnet run --project engine/tools/MrGameEng.AtlasTool -c Release -- textures src/LittleSim/Assets/Atlases --group-depth 2 -``` - -Rebuilds are incremental (unchanged groups are skipped). Region keys are paths relative -to `textures/` without extension: `atlas.GetRegion("things/plant/treeoak/TreeOakA")`. +Atlases are built **at game start** from the merged texture tree of all active mods +into `Cache/Atlases` (incremental: unchanged groups are skipped, a clean first run +takes ~20 s). Region keys are paths relative to `Textures/` without extension: +`atlases.GetRegion(device, "things/plant/treeoak/TreeOakA")`. Console commands: +`mods`, `lang [code]`, `defs [type]`, `atlas [name]`. ## Submodule workflow @@ -57,4 +60,6 @@ Never commit a pointer to an unpushed engine commit. - Simulation/presentation split: simulation systems mutate components only; rendering reads them. No draw calls or UI from simulation systems. - ECS-first per the engine: plain `struct : IComponent` data, logic in systems. +- Content as data: numbers, textures and balance live in `Mods/Core/Defs`, user-facing + strings in `Mods/Core/Languages` — code only defines systems and def classes. - Every new mechanic gets a dev-console command for testing (`regen`, `timescale`, …). diff --git a/LittleSim.sln b/LittleSim.sln index cf7c965..69ee0aa 100644 --- a/LittleSim.sln +++ b/LittleSim.sln @@ -47,6 +47,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MrGameEng.Pathfinding.Tests EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MrGameEng.Collisions.Tests", "engine\tests\MrGameEng.Collisions.Tests\MrGameEng.Collisions.Tests.csproj", "{B9161776-32FE-415E-9401-DC5BB87FC225}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MrGameEng.Mods", "engine\src\MrGameEng.Mods\MrGameEng.Mods.csproj", "{F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MrGameEng.Mods.Tests", "engine\tests\MrGameEng.Mods.Tests\MrGameEng.Mods.Tests.csproj", "{07986629-FE7C-42BE-868B-0FCA1915D2A2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -273,6 +277,30 @@ Global {B9161776-32FE-415E-9401-DC5BB87FC225}.Release|x64.Build.0 = Release|Any CPU {B9161776-32FE-415E-9401-DC5BB87FC225}.Release|x86.ActiveCfg = Release|Any CPU {B9161776-32FE-415E-9401-DC5BB87FC225}.Release|x86.Build.0 = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|x64.ActiveCfg = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|x64.Build.0 = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|x86.ActiveCfg = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Debug|x86.Build.0 = Debug|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|Any CPU.Build.0 = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|x64.ActiveCfg = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|x64.Build.0 = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|x86.ActiveCfg = Release|Any CPU + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82}.Release|x86.Build.0 = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|x64.ActiveCfg = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|x64.Build.0 = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|x86.ActiveCfg = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Debug|x86.Build.0 = Debug|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|Any CPU.Build.0 = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|x64.ActiveCfg = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|x64.Build.0 = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|x86.ActiveCfg = Release|Any CPU + {07986629-FE7C-42BE-868B-0FCA1915D2A2}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -298,5 +326,7 @@ Global {9406DB4C-FABF-48FE-BEA7-25AD319D2172} = {F4A69A46-AF86-AB4E-7D23-4CCCB7B9A519} {47E5E756-64F9-4B5A-8EC3-B016745166C4} = {CD3B5CE5-C23F-38B4-04AA-A303F94731A5} {B9161776-32FE-415E-9401-DC5BB87FC225} = {CD3B5CE5-C23F-38B4-04AA-A303F94731A5} + {F91AA8C8-FD6B-4B92-BB3A-844DCA932D82} = {F4A69A46-AF86-AB4E-7D23-4CCCB7B9A519} + {07986629-FE7C-42BE-868B-0FCA1915D2A2} = {CD3B5CE5-C23F-38B4-04AA-A303F94731A5} EndGlobalSection EndGlobal diff --git a/Mods/Core/About/About.json b/Mods/Core/About/About.json new file mode 100644 index 0000000..db613c9 --- /dev/null +++ b/Mods/Core/About/About.json @@ -0,0 +1,8 @@ +{ + "id": "Core", + "name": "LittleSim Core", + "author": "mrleo1nid", + "version": "0.1.0", + "description": "Базовый контент LittleSim: рельеф, растения, существа, текстуры и локализация. Игра целиком описана как мод — любой другой мод может переопределить её содержимое.", + "dependencies": [] +} diff --git a/Mods/Core/Defs/pawns.json b/Mods/Core/Defs/pawns.json new file mode 100644 index 0000000..dfcc2ce --- /dev/null +++ b/Mods/Core/Defs/pawns.json @@ -0,0 +1,22 @@ +{ + "type": "Pawn", + "defs": [ + { "defName": "BaseBeing", "abstract": true, "kind": "being", "sizeCells": 1.1 }, + { "defName": "BeingMale", "parent": "BaseBeing", "label": "pawn.being", "texture": "things/pawn/humanlike/bodies/FurCovered_Male_south" }, + { "defName": "BeingFemale", "parent": "BaseBeing", "label": "pawn.being", "texture": "things/pawn/humanlike/bodies/FurCovered_Female_south" }, + { "defName": "BeingThin", "parent": "BaseBeing", "label": "pawn.being", "texture": "things/pawn/humanlike/bodies/FurCovered_Thin_south" }, + { "defName": "BeingFat", "parent": "BaseBeing", "label": "pawn.being", "texture": "things/pawn/humanlike/bodies/FurCovered_Fat_south" }, + { "defName": "BeingHulk", "parent": "BaseBeing", "label": "pawn.being", "texture": "things/pawn/humanlike/bodies/FurCovered_Hulk_south" }, + + { "defName": "BaseAnimal", "abstract": true, "kind": "animal" }, + { "defName": "Bear", "parent": "BaseAnimal", "label": "pawn.bear", "texture": "things/pawn/animal/bear/Bear_east", "sizeCells": 1.7 }, + { "defName": "DeerDoe", "parent": "BaseAnimal", "label": "pawn.deer", "texture": "things/pawn/animal/deer/DeerFemale_east", "sizeCells": 1.4 }, + { "defName": "DeerBuck", "parent": "BaseAnimal", "label": "pawn.deer", "texture": "things/pawn/animal/deer/DeerMale_east", "sizeCells": 1.6 }, + { "defName": "FoxRed", "parent": "BaseAnimal", "label": "pawn.fox", "texture": "things/pawn/animal/fox_red/Fox_Red_east", "sizeCells": 1.0 }, + { "defName": "Hare", "parent": "BaseAnimal", "label": "pawn.hare", "texture": "things/pawn/animal/hare/Hare_east", "sizeCells": 0.7 }, + { "defName": "WildBoar", "parent": "BaseAnimal", "label": "pawn.boar", "texture": "things/pawn/animal/wildboar/WildBoar_east", "sizeCells": 1.2 }, + { "defName": "Wolf", "parent": "BaseAnimal", "label": "pawn.wolf", "texture": "things/pawn/animal/wolf_timber/Wolf_Timber_east", "sizeCells": 1.4 }, + { "defName": "Muffalo", "parent": "BaseAnimal", "label": "pawn.muffalo", "texture": "things/pawn/animal/muffalo/Muffalo_east", "sizeCells": 1.8 }, + { "defName": "Squirrel", "parent": "BaseAnimal", "label": "pawn.squirrel", "texture": "things/pawn/animal/squirrel/Squirrel_east", "sizeCells": 0.6 } + ] +} diff --git a/Mods/Core/Defs/plants.json b/Mods/Core/Defs/plants.json new file mode 100644 index 0000000..dd3bd6c --- /dev/null +++ b/Mods/Core/Defs/plants.json @@ -0,0 +1,17 @@ +{ + "type": "Plant", + "defs": [ + { "defName": "BaseTree", "abstract": true, "sizeCells": 2.0, "trunkRadiusCells": 0.28 }, + { "defName": "TreeOakA", "parent": "BaseTree", "label": "plant.oak", "texture": "things/plant/treeoak/TreeOakA" }, + { "defName": "TreeOakB", "parent": "BaseTree", "label": "plant.oak", "texture": "things/plant/treeoak/TreeOakB" }, + { "defName": "TreeBirchA", "parent": "BaseTree", "label": "plant.birch", "texture": "things/plant/treebirch/TreeBirchA" }, + { "defName": "TreeGrayPineA", "parent": "BaseTree", "label": "plant.pine", "texture": "things/plant/treegraypine/TreeGrayPineA" }, + + { "defName": "GrassA", "label": "plant.grass", "texture": "things/plant/grass/grassa", "sizeCells": 1.2 }, + + { "defName": "BaseBush", "abstract": true, "label": "plant.bush", "sizeCells": 1.4 }, + { "defName": "BushA", "parent": "BaseBush", "texture": "things/plant/bush/BushA" }, + { "defName": "BushB", "parent": "BaseBush", "texture": "things/plant/bush/BushB" }, + { "defName": "BushC", "parent": "BaseBush", "texture": "things/plant/bush/BushC" } + ] +} diff --git a/Mods/Core/Defs/terrain.json b/Mods/Core/Defs/terrain.json new file mode 100644 index 0000000..c3f539d --- /dev/null +++ b/Mods/Core/Defs/terrain.json @@ -0,0 +1,22 @@ +{ + "type": "Terrain", + "defs": [ + { "defName": "DeepWater", "label": "terrain.deepwater", "maxHeight": 0.30, "color": [23, 63, 95] }, + { "defName": "Water", "label": "terrain.water", "maxHeight": 0.42, "color": [32, 99, 155] }, + { "defName": "Sand", "label": "terrain.sand", "maxHeight": 0.48, "color": [237, 201, 120], + "isLand": true, "surface": "terrain/surfaces/sand" }, + { "defName": "Grass", "label": "terrain.grass", "maxHeight": 0.68, "color": [90, 160, 70], + "isLand": true, "surface": "terrain/surfaces/mossy", + "scatter": [ + { "chance": 0.35, "options": ["GrassA"] }, + { "chance": 0.07, "options": ["BushA", "BushB", "BushC"] } + ] }, + { "defName": "Forest", "label": "terrain.forest", "maxHeight": 0.85, "color": [44, 110, 50], + "isLand": true, "surface": "terrain/surfaces/soil", + "scatter": [ + { "chance": 0.35, "options": ["TreeOakA", "TreeOakB", "TreeBirchA", "TreeGrayPineA"] } + ] }, + { "defName": "Mountain", "label": "terrain.mountain", "maxHeight": 1.01, "color": [136, 132, 128], + "surface": "terrain/surfaces/roughhewnrock" } + ] +} diff --git a/Mods/Core/Languages/en/ui.json b/Mods/Core/Languages/en/ui.json new file mode 100644 index 0000000..4b9b4b0 --- /dev/null +++ b/Mods/Core/Languages/en/ui.json @@ -0,0 +1,28 @@ +{ + "hud.world": "LittleSim | seed {0} | population {1} | {2} FPS", + "hud.terrain": "LittleSim | terrain | seed {0} | animals: {1}", + "hud.controls": "WASD — camera, wheel — zoom, ` — console ('help' lists commands)", + + "terrain.deepwater": "deep water", + "terrain.water": "water", + "terrain.sand": "sand", + "terrain.grass": "grass", + "terrain.forest": "forest", + "terrain.mountain": "mountains", + + "plant.oak": "oak", + "plant.birch": "birch", + "plant.pine": "pine", + "plant.grass": "grass tuft", + "plant.bush": "bush", + + "pawn.being": "being", + "pawn.bear": "bear", + "pawn.deer": "deer", + "pawn.fox": "fox", + "pawn.hare": "hare", + "pawn.boar": "boar", + "pawn.wolf": "wolf", + "pawn.muffalo": "muffalo", + "pawn.squirrel": "squirrel" +} diff --git a/Mods/Core/Languages/ru/ui.json b/Mods/Core/Languages/ru/ui.json new file mode 100644 index 0000000..e08fc85 --- /dev/null +++ b/Mods/Core/Languages/ru/ui.json @@ -0,0 +1,28 @@ +{ + "hud.world": "LittleSim | сид {0} | население {1} | {2} FPS", + "hud.terrain": "LittleSim | террейн | сид {0} | животных: {1}", + "hud.controls": "WASD — камера, колесо — зум, ` — консоль ('help' — список команд)", + + "terrain.deepwater": "глубокая вода", + "terrain.water": "вода", + "terrain.sand": "песок", + "terrain.grass": "трава", + "terrain.forest": "лес", + "terrain.mountain": "горы", + + "plant.oak": "дуб", + "plant.birch": "берёза", + "plant.pine": "сосна", + "plant.grass": "пучок травы", + "plant.bush": "куст", + + "pawn.being": "житель", + "pawn.bear": "медведь", + "pawn.deer": "олень", + "pawn.fox": "лиса", + "pawn.hare": "заяц", + "pawn.boar": "кабан", + "pawn.wolf": "волк", + "pawn.muffalo": "муффало", + "pawn.squirrel": "белка" +} diff --git a/textures/damage/corner.png b/Mods/Core/Textures/damage/corner.png similarity index 100% rename from textures/damage/corner.png rename to Mods/Core/Textures/damage/corner.png diff --git a/textures/damage/edge.png b/Mods/Core/Textures/damage/edge.png similarity index 100% rename from textures/damage/edge.png rename to Mods/Core/Textures/damage/edge.png diff --git a/textures/damage/scratch1.png b/Mods/Core/Textures/damage/scratch1.png similarity index 100% rename from textures/damage/scratch1.png rename to Mods/Core/Textures/damage/scratch1.png diff --git a/textures/damage/scratch2.png b/Mods/Core/Textures/damage/scratch2.png similarity index 100% rename from textures/damage/scratch2.png rename to Mods/Core/Textures/damage/scratch2.png diff --git a/textures/damage/scratch3.png b/Mods/Core/Textures/damage/scratch3.png similarity index 100% rename from textures/damage/scratch3.png rename to Mods/Core/Textures/damage/scratch3.png diff --git a/textures/designations/cutplant.png b/Mods/Core/Textures/designations/cutplant.png similarity index 100% rename from textures/designations/cutplant.png rename to Mods/Core/Textures/designations/cutplant.png diff --git a/textures/designations/deconstruct.png b/Mods/Core/Textures/designations/deconstruct.png similarity index 100% rename from textures/designations/deconstruct.png rename to Mods/Core/Textures/designations/deconstruct.png diff --git a/textures/designations/flick.png b/Mods/Core/Textures/designations/flick.png similarity index 100% rename from textures/designations/flick.png rename to Mods/Core/Textures/designations/flick.png diff --git a/textures/designations/harvestplant.png b/Mods/Core/Textures/designations/harvestplant.png similarity index 100% rename from textures/designations/harvestplant.png rename to Mods/Core/Textures/designations/harvestplant.png diff --git a/textures/designations/haul.png b/Mods/Core/Textures/designations/haul.png similarity index 100% rename from textures/designations/haul.png rename to Mods/Core/Textures/designations/haul.png diff --git a/textures/designations/hunt.png b/Mods/Core/Textures/designations/hunt.png similarity index 100% rename from textures/designations/hunt.png rename to Mods/Core/Textures/designations/hunt.png diff --git a/textures/designations/mine.png b/Mods/Core/Textures/designations/mine.png similarity index 100% rename from textures/designations/mine.png rename to Mods/Core/Textures/designations/mine.png diff --git a/textures/designations/open.png b/Mods/Core/Textures/designations/open.png similarity index 100% rename from textures/designations/open.png rename to Mods/Core/Textures/designations/open.png diff --git a/textures/designations/plan.png b/Mods/Core/Textures/designations/plan.png similarity index 100% rename from textures/designations/plan.png rename to Mods/Core/Textures/designations/plan.png diff --git a/textures/designations/rearmtrap.png b/Mods/Core/Textures/designations/rearmtrap.png similarity index 100% rename from textures/designations/rearmtrap.png rename to Mods/Core/Textures/designations/rearmtrap.png diff --git a/textures/designations/removefloor.png b/Mods/Core/Textures/designations/removefloor.png similarity index 100% rename from textures/designations/removefloor.png rename to Mods/Core/Textures/designations/removefloor.png diff --git a/textures/designations/slaughter.png b/Mods/Core/Textures/designations/slaughter.png similarity index 100% rename from textures/designations/slaughter.png rename to Mods/Core/Textures/designations/slaughter.png diff --git a/textures/designations/smoothfloor.png b/Mods/Core/Textures/designations/smoothfloor.png similarity index 100% rename from textures/designations/smoothfloor.png rename to Mods/Core/Textures/designations/smoothfloor.png diff --git a/textures/designations/strip.png b/Mods/Core/Textures/designations/strip.png similarity index 100% rename from textures/designations/strip.png rename to Mods/Core/Textures/designations/strip.png diff --git a/textures/designations/tame.png b/Mods/Core/Textures/designations/tame.png similarity index 100% rename from textures/designations/tame.png rename to Mods/Core/Textures/designations/tame.png diff --git a/textures/designations/uninstall.png b/Mods/Core/Textures/designations/uninstall.png similarity index 100% rename from textures/designations/uninstall.png rename to Mods/Core/Textures/designations/uninstall.png diff --git a/textures/other/fogofwar.png b/Mods/Core/Textures/other/fogofwar.png similarity index 100% rename from textures/other/fogofwar.png rename to Mods/Core/Textures/other/fogofwar.png diff --git a/textures/other/fogofwardetail.png b/Mods/Core/Textures/other/fogofwardetail.png similarity index 100% rename from textures/other/fogofwardetail.png rename to Mods/Core/Textures/other/fogofwardetail.png diff --git a/textures/other/noise.png b/Mods/Core/Textures/other/noise.png similarity index 100% rename from textures/other/noise.png rename to Mods/Core/Textures/other/noise.png diff --git a/textures/other/ripples.png b/Mods/Core/Textures/other/ripples.png similarity index 100% rename from textures/other/ripples.png rename to Mods/Core/Textures/other/ripples.png diff --git a/textures/other/roughalphaadd.png b/Mods/Core/Textures/other/roughalphaadd.png similarity index 100% rename from textures/other/roughalphaadd.png rename to Mods/Core/Textures/other/roughalphaadd.png diff --git a/textures/other/shieldbubble.png b/Mods/Core/Textures/other/shieldbubble.png similarity index 100% rename from textures/other/shieldbubble.png rename to Mods/Core/Textures/other/shieldbubble.png diff --git a/textures/other/snow.png b/Mods/Core/Textures/other/snow.png similarity index 100% rename from textures/other/snow.png rename to Mods/Core/Textures/other/snow.png diff --git a/textures/other/snowmacro.png b/Mods/Core/Textures/other/snowmacro.png similarity index 100% rename from textures/other/snowmacro.png rename to Mods/Core/Textures/other/snowmacro.png diff --git a/textures/terrain/scatter/debrisstonea.png b/Mods/Core/Textures/terrain/scatter/debrisstonea.png similarity index 100% rename from textures/terrain/scatter/debrisstonea.png rename to Mods/Core/Textures/terrain/scatter/debrisstonea.png diff --git a/textures/terrain/scatter/debrisstoneb.png b/Mods/Core/Textures/terrain/scatter/debrisstoneb.png similarity index 100% rename from textures/terrain/scatter/debrisstoneb.png rename to Mods/Core/Textures/terrain/scatter/debrisstoneb.png diff --git a/textures/terrain/scatter/dirtsmeara.png b/Mods/Core/Textures/terrain/scatter/dirtsmeara.png similarity index 100% rename from textures/terrain/scatter/dirtsmeara.png rename to Mods/Core/Textures/terrain/scatter/dirtsmeara.png diff --git a/textures/terrain/scatter/dirtsmearb.png b/Mods/Core/Textures/terrain/scatter/dirtsmearb.png similarity index 100% rename from textures/terrain/scatter/dirtsmearb.png rename to Mods/Core/Textures/terrain/scatter/dirtsmearb.png diff --git a/textures/terrain/scatter/graysmeara.png b/Mods/Core/Textures/terrain/scatter/graysmeara.png similarity index 100% rename from textures/terrain/scatter/graysmeara.png rename to Mods/Core/Textures/terrain/scatter/graysmeara.png diff --git a/textures/terrain/scatter/graysmearb.png b/Mods/Core/Textures/terrain/scatter/graysmearb.png similarity index 100% rename from textures/terrain/scatter/graysmearb.png rename to Mods/Core/Textures/terrain/scatter/graysmearb.png diff --git a/textures/terrain/surfaces/Marsh.png b/Mods/Core/Textures/terrain/surfaces/Marsh.png similarity index 100% rename from textures/terrain/surfaces/Marsh.png rename to Mods/Core/Textures/terrain/surfaces/Marsh.png diff --git a/textures/terrain/surfaces/Marsh_bright.png b/Mods/Core/Textures/terrain/surfaces/Marsh_bright.png similarity index 100% rename from textures/terrain/surfaces/Marsh_bright.png rename to Mods/Core/Textures/terrain/surfaces/Marsh_bright.png diff --git a/textures/terrain/surfaces/brokenasphalt.png b/Mods/Core/Textures/terrain/surfaces/brokenasphalt.png similarity index 100% rename from textures/terrain/surfaces/brokenasphalt.png rename to Mods/Core/Textures/terrain/surfaces/brokenasphalt.png diff --git a/textures/terrain/surfaces/burnedcarpet.png b/Mods/Core/Textures/terrain/surfaces/burnedcarpet.png similarity index 100% rename from textures/terrain/surfaces/burnedcarpet.png rename to Mods/Core/Textures/terrain/surfaces/burnedcarpet.png diff --git a/textures/terrain/surfaces/burnedwoodfloor.png b/Mods/Core/Textures/terrain/surfaces/burnedwoodfloor.png similarity index 100% rename from textures/terrain/surfaces/burnedwoodfloor.png rename to Mods/Core/Textures/terrain/surfaces/burnedwoodfloor.png diff --git a/textures/terrain/surfaces/carpet.png b/Mods/Core/Textures/terrain/surfaces/carpet.png similarity index 100% rename from textures/terrain/surfaces/carpet.png rename to Mods/Core/Textures/terrain/surfaces/carpet.png diff --git a/textures/terrain/surfaces/concrete.png b/Mods/Core/Textures/terrain/surfaces/concrete.png similarity index 100% rename from textures/terrain/surfaces/concrete.png rename to Mods/Core/Textures/terrain/surfaces/concrete.png diff --git a/textures/terrain/surfaces/flagstone.png b/Mods/Core/Textures/terrain/surfaces/flagstone.png similarity index 100% rename from textures/terrain/surfaces/flagstone.png rename to Mods/Core/Textures/terrain/surfaces/flagstone.png diff --git a/textures/terrain/surfaces/genericfloortile.png b/Mods/Core/Textures/terrain/surfaces/genericfloortile.png similarity index 100% rename from textures/terrain/surfaces/genericfloortile.png rename to Mods/Core/Textures/terrain/surfaces/genericfloortile.png diff --git a/textures/terrain/surfaces/gravel.png b/Mods/Core/Textures/terrain/surfaces/gravel.png similarity index 100% rename from textures/terrain/surfaces/gravel.png rename to Mods/Core/Textures/terrain/surfaces/gravel.png diff --git a/textures/terrain/surfaces/ice.png b/Mods/Core/Textures/terrain/surfaces/ice.png similarity index 100% rename from textures/terrain/surfaces/ice.png rename to Mods/Core/Textures/terrain/surfaces/ice.png diff --git a/textures/terrain/surfaces/marshyterrain.png b/Mods/Core/Textures/terrain/surfaces/marshyterrain.png similarity index 100% rename from textures/terrain/surfaces/marshyterrain.png rename to Mods/Core/Textures/terrain/surfaces/marshyterrain.png diff --git a/textures/terrain/surfaces/mossy.png b/Mods/Core/Textures/terrain/surfaces/mossy.png similarity index 100% rename from textures/terrain/surfaces/mossy.png rename to Mods/Core/Textures/terrain/surfaces/mossy.png diff --git a/textures/terrain/surfaces/mud.png b/Mods/Core/Textures/terrain/surfaces/mud.png similarity index 100% rename from textures/terrain/surfaces/mud.png rename to Mods/Core/Textures/terrain/surfaces/mud.png diff --git a/textures/terrain/surfaces/packeddirt.png b/Mods/Core/Textures/terrain/surfaces/packeddirt.png similarity index 100% rename from textures/terrain/surfaces/packeddirt.png rename to Mods/Core/Textures/terrain/surfaces/packeddirt.png diff --git a/textures/terrain/surfaces/pavedtile.png b/Mods/Core/Textures/terrain/surfaces/pavedtile.png similarity index 100% rename from textures/terrain/surfaces/pavedtile.png rename to Mods/Core/Textures/terrain/surfaces/pavedtile.png diff --git a/textures/terrain/surfaces/roughhewnrock.png b/Mods/Core/Textures/terrain/surfaces/roughhewnrock.png similarity index 100% rename from textures/terrain/surfaces/roughhewnrock.png rename to Mods/Core/Textures/terrain/surfaces/roughhewnrock.png diff --git a/textures/terrain/surfaces/roughstone.png b/Mods/Core/Textures/terrain/surfaces/roughstone.png similarity index 100% rename from textures/terrain/surfaces/roughstone.png rename to Mods/Core/Textures/terrain/surfaces/roughstone.png diff --git a/textures/terrain/surfaces/sand.png b/Mods/Core/Textures/terrain/surfaces/sand.png similarity index 100% rename from textures/terrain/surfaces/sand.png rename to Mods/Core/Textures/terrain/surfaces/sand.png diff --git a/textures/terrain/surfaces/smoothstone.png b/Mods/Core/Textures/terrain/surfaces/smoothstone.png similarity index 100% rename from textures/terrain/surfaces/smoothstone.png rename to Mods/Core/Textures/terrain/surfaces/smoothstone.png diff --git a/textures/terrain/surfaces/soil.png b/Mods/Core/Textures/terrain/surfaces/soil.png similarity index 100% rename from textures/terrain/surfaces/soil.png rename to Mods/Core/Textures/terrain/surfaces/soil.png diff --git a/textures/terrain/surfaces/soilrich.png b/Mods/Core/Textures/terrain/surfaces/soilrich.png similarity index 100% rename from textures/terrain/surfaces/soilrich.png rename to Mods/Core/Textures/terrain/surfaces/soilrich.png diff --git a/textures/terrain/surfaces/tilestone.png b/Mods/Core/Textures/terrain/surfaces/tilestone.png similarity index 100% rename from textures/terrain/surfaces/tilestone.png rename to Mods/Core/Textures/terrain/surfaces/tilestone.png diff --git a/textures/terrain/surfaces/underwall.png b/Mods/Core/Textures/terrain/surfaces/underwall.png similarity index 100% rename from textures/terrain/surfaces/underwall.png rename to Mods/Core/Textures/terrain/surfaces/underwall.png diff --git a/textures/terrain/surfaces/waterdeepramp.png b/Mods/Core/Textures/terrain/surfaces/waterdeepramp.png similarity index 100% rename from textures/terrain/surfaces/waterdeepramp.png rename to Mods/Core/Textures/terrain/surfaces/waterdeepramp.png diff --git a/textures/terrain/surfaces/watershallowramp.png b/Mods/Core/Textures/terrain/surfaces/watershallowramp.png similarity index 100% rename from textures/terrain/surfaces/watershallowramp.png rename to Mods/Core/Textures/terrain/surfaces/watershallowramp.png diff --git a/textures/terrain/surfaces/woodfloor.png b/Mods/Core/Textures/terrain/surfaces/woodfloor.png similarity index 100% rename from textures/terrain/surfaces/woodfloor.png rename to Mods/Core/Textures/terrain/surfaces/woodfloor.png diff --git a/textures/things/building/art/sculpturegrand/sculpturegrandabstracta.png b/Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstracta.png similarity index 100% rename from textures/things/building/art/sculpturegrand/sculpturegrandabstracta.png rename to Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstracta.png diff --git a/textures/things/building/art/sculpturegrand/sculpturegrandabstractb.png b/Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstractb.png similarity index 100% rename from textures/things/building/art/sculpturegrand/sculpturegrandabstractb.png rename to Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstractb.png diff --git a/textures/things/building/art/sculpturegrand/sculpturegrandabstractc.png b/Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstractc.png similarity index 100% rename from textures/things/building/art/sculpturegrand/sculpturegrandabstractc.png rename to Mods/Core/Textures/things/building/art/sculpturegrand/sculpturegrandabstractc.png diff --git a/textures/things/building/art/sculpturelarge/sculpturelargeabstracta.png b/Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstracta.png similarity index 100% rename from textures/things/building/art/sculpturelarge/sculpturelargeabstracta.png rename to Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstracta.png diff --git a/textures/things/building/art/sculpturelarge/sculpturelargeabstractb.png b/Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstractb.png similarity index 100% rename from textures/things/building/art/sculpturelarge/sculpturelargeabstractb.png rename to Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstractb.png diff --git a/textures/things/building/art/sculpturelarge/sculpturelargeabstractc.png b/Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstractc.png similarity index 100% rename from textures/things/building/art/sculpturelarge/sculpturelargeabstractc.png rename to Mods/Core/Textures/things/building/art/sculpturelarge/sculpturelargeabstractc.png diff --git a/textures/things/building/art/sculpturesmall/sculpturesmallabstracta.png b/Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallabstracta.png similarity index 100% rename from textures/things/building/art/sculpturesmall/sculpturesmallabstracta.png rename to Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallabstracta.png diff --git a/textures/things/building/art/sculpturesmall/sculpturesmallabstractb.png b/Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallabstractb.png similarity index 100% rename from textures/things/building/art/sculpturesmall/sculpturesmallabstractb.png rename to Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallabstractb.png diff --git a/textures/things/building/art/sculpturesmall/sculpturesmallbusta.png b/Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallbusta.png similarity index 100% rename from textures/things/building/art/sculpturesmall/sculpturesmallbusta.png rename to Mods/Core/Textures/things/building/art/sculpturesmall/sculpturesmallbusta.png diff --git a/textures/things/building/art/snowman.png b/Mods/Core/Textures/things/building/art/snowman.png similarity index 100% rename from textures/things/building/art/snowman.png rename to Mods/Core/Textures/things/building/art/snowman.png diff --git a/textures/things/building/art/snowman/Snowman_A.png b/Mods/Core/Textures/things/building/art/snowman/Snowman_A.png similarity index 100% rename from textures/things/building/art/snowman/Snowman_A.png rename to Mods/Core/Textures/things/building/art/snowman/Snowman_A.png diff --git a/textures/things/building/art/snowman/Snowman_B.png b/Mods/Core/Textures/things/building/art/snowman/Snowman_B.png similarity index 100% rename from textures/things/building/art/snowman/Snowman_B.png rename to Mods/Core/Textures/things/building/art/snowman/Snowman_B.png diff --git a/textures/things/building/art/snowman/Snowman_C.png b/Mods/Core/Textures/things/building/art/snowman/Snowman_C.png similarity index 100% rename from textures/things/building/art/snowman/Snowman_C.png rename to Mods/Core/Textures/things/building/art/snowman/Snowman_C.png diff --git a/textures/things/building/art/snowman/Snowman_D.png b/Mods/Core/Textures/things/building/art/snowman/Snowman_D.png similarity index 100% rename from textures/things/building/art/snowman/Snowman_D.png rename to Mods/Core/Textures/things/building/art/snowman/Snowman_D.png diff --git a/textures/things/building/buildingframe/corner.png b/Mods/Core/Textures/things/building/buildingframe/corner.png similarity index 100% rename from textures/things/building/buildingframe/corner.png rename to Mods/Core/Textures/things/building/buildingframe/corner.png diff --git a/textures/things/building/buildingframe/tile.png b/Mods/Core/Textures/things/building/buildingframe/tile.png similarity index 100% rename from textures/things/building/buildingframe/tile.png rename to Mods/Core/Textures/things/building/buildingframe/tile.png diff --git a/textures/things/building/buildingframe/underfield.png b/Mods/Core/Textures/things/building/buildingframe/underfield.png similarity index 100% rename from textures/things/building/buildingframe/underfield.png rename to Mods/Core/Textures/things/building/buildingframe/underfield.png diff --git a/textures/things/building/buildingstyles/morbid/MorbidDarklampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidDarklampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/morbid/MorbidDarklampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidDarklampStanding.png diff --git a/textures/things/building/buildingstyles/morbid/MorbidLampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidLampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/morbid/MorbidLampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidLampStanding.png diff --git a/textures/things/building/buildingstyles/morbid/MorbidTorchLamp.png b/Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidTorchLamp.png similarity index 100% rename from textures/things/building/buildingstyles/morbid/MorbidTorchLamp.png rename to Mods/Core/Textures/things/building/buildingstyles/morbid/MorbidTorchLamp.png diff --git a/textures/things/building/buildingstyles/morbid/stool/MorbidStool_east.png b/Mods/Core/Textures/things/building/buildingstyles/morbid/stool/MorbidStool_east.png similarity index 100% rename from textures/things/building/buildingstyles/morbid/stool/MorbidStool_east.png rename to Mods/Core/Textures/things/building/buildingstyles/morbid/stool/MorbidStool_east.png diff --git a/textures/things/building/buildingstyles/morbid/stool/MorbidStool_north.png b/Mods/Core/Textures/things/building/buildingstyles/morbid/stool/MorbidStool_north.png similarity index 100% rename from textures/things/building/buildingstyles/morbid/stool/MorbidStool_north.png rename to Mods/Core/Textures/things/building/buildingstyles/morbid/stool/MorbidStool_north.png diff --git a/textures/things/building/buildingstyles/rustic/RusticDarklampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/rustic/RusticDarklampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/rustic/RusticDarklampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/rustic/RusticDarklampStanding.png diff --git a/textures/things/building/buildingstyles/rustic/RusticLampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/rustic/RusticLampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/rustic/RusticLampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/rustic/RusticLampStanding.png diff --git a/textures/things/building/buildingstyles/rustic/RusticTorchLamp.png b/Mods/Core/Textures/things/building/buildingstyles/rustic/RusticTorchLamp.png similarity index 100% rename from textures/things/building/buildingstyles/rustic/RusticTorchLamp.png rename to Mods/Core/Textures/things/building/buildingstyles/rustic/RusticTorchLamp.png diff --git a/textures/things/building/buildingstyles/spikecore/SpikecoreDarklampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreDarklampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/spikecore/SpikecoreDarklampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreDarklampStanding.png diff --git a/textures/things/building/buildingstyles/spikecore/SpikecoreLampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreLampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/spikecore/SpikecoreLampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreLampStanding.png diff --git a/textures/things/building/buildingstyles/spikecore/SpikecoreTorchLamp.png b/Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreTorchLamp.png similarity index 100% rename from textures/things/building/buildingstyles/spikecore/SpikecoreTorchLamp.png rename to Mods/Core/Textures/things/building/buildingstyles/spikecore/SpikecoreTorchLamp.png diff --git a/textures/things/building/buildingstyles/techist/TechistDarklampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/techist/TechistDarklampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/techist/TechistDarklampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/techist/TechistDarklampStanding.png diff --git a/textures/things/building/buildingstyles/techist/TechistLampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/techist/TechistLampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/techist/TechistLampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/techist/TechistLampStanding.png diff --git a/textures/things/building/buildingstyles/techist/TechistPlantPot.png b/Mods/Core/Textures/things/building/buildingstyles/techist/TechistPlantPot.png similarity index 100% rename from textures/things/building/buildingstyles/techist/TechistPlantPot.png rename to Mods/Core/Textures/things/building/buildingstyles/techist/TechistPlantPot.png diff --git a/textures/things/building/buildingstyles/totemic/TotemicDarklampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicDarklampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/totemic/TotemicDarklampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicDarklampStanding.png diff --git a/textures/things/building/buildingstyles/totemic/TotemicLampStanding.png b/Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicLampStanding.png similarity index 100% rename from textures/things/building/buildingstyles/totemic/TotemicLampStanding.png rename to Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicLampStanding.png diff --git a/textures/things/building/buildingstyles/totemic/TotemicTorchLamp.png b/Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicTorchLamp.png similarity index 100% rename from textures/things/building/buildingstyles/totemic/TotemicTorchLamp.png rename to Mods/Core/Textures/things/building/buildingstyles/totemic/TotemicTorchLamp.png diff --git a/textures/things/building/buildingstyles/totemic/stool/TotemicStool_east.png b/Mods/Core/Textures/things/building/buildingstyles/totemic/stool/TotemicStool_east.png similarity index 100% rename from textures/things/building/buildingstyles/totemic/stool/TotemicStool_east.png rename to Mods/Core/Textures/things/building/buildingstyles/totemic/stool/TotemicStool_east.png diff --git a/textures/things/building/buildingstyles/totemic/stool/TotemicStool_north.png b/Mods/Core/Textures/things/building/buildingstyles/totemic/stool/TotemicStool_north.png similarity index 100% rename from textures/things/building/buildingstyles/totemic/stool/TotemicStool_north.png rename to Mods/Core/Textures/things/building/buildingstyles/totemic/stool/TotemicStool_north.png diff --git a/textures/things/building/childcare/ToyBox.png b/Mods/Core/Textures/things/building/childcare/ToyBox.png similarity index 100% rename from textures/things/building/childcare/ToyBox.png rename to Mods/Core/Textures/things/building/childcare/ToyBox.png diff --git a/textures/things/building/childcare/ToyBox_m.png b/Mods/Core/Textures/things/building/childcare/ToyBox_m.png similarity index 100% rename from textures/things/building/childcare/ToyBox_m.png rename to Mods/Core/Textures/things/building/childcare/ToyBox_m.png diff --git a/textures/things/building/childcare/babydecoration/BabyDecorationA.png b/Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationA.png similarity index 100% rename from textures/things/building/childcare/babydecoration/BabyDecorationA.png rename to Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationA.png diff --git a/textures/things/building/childcare/babydecoration/BabyDecorationB.png b/Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationB.png similarity index 100% rename from textures/things/building/childcare/babydecoration/BabyDecorationB.png rename to Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationB.png diff --git a/textures/things/building/childcare/babydecoration/BabyDecorationC.png b/Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationC.png similarity index 100% rename from textures/things/building/childcare/babydecoration/BabyDecorationC.png rename to Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationC.png diff --git a/textures/things/building/childcare/babydecoration/BabyDecorationD.png b/Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationD.png similarity index 100% rename from textures/things/building/childcare/babydecoration/BabyDecorationD.png rename to Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationD.png diff --git a/textures/things/building/childcare/babydecoration/BabyDecorationE.png b/Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationE.png similarity index 100% rename from textures/things/building/childcare/babydecoration/BabyDecorationE.png rename to Mods/Core/Textures/things/building/childcare/babydecoration/BabyDecorationE.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_east.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_east.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_east.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_east.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_eastm.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_eastm.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_eastm.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_eastm.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_north.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_north.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_north.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_north.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_northm.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_northm.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_northm.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_northm.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_south.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_south.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_south.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_south.png diff --git a/textures/things/building/childcare/blackboard/Blackboard_southm.png b/Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_southm.png similarity index 100% rename from textures/things/building/childcare/blackboard/Blackboard_southm.png rename to Mods/Core/Textures/things/building/childcare/blackboard/Blackboard_southm.png diff --git a/textures/things/building/childcare/crib/Crib_east.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_east.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_east.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_east.png diff --git a/textures/things/building/childcare/crib/Crib_eastm.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_eastm.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_eastm.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_eastm.png diff --git a/textures/things/building/childcare/crib/Crib_north.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_north.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_north.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_north.png diff --git a/textures/things/building/childcare/crib/Crib_northm.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_northm.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_northm.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_northm.png diff --git a/textures/things/building/childcare/crib/Crib_south.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_south.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_south.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_south.png diff --git a/textures/things/building/childcare/crib/Crib_southm.png b/Mods/Core/Textures/things/building/childcare/crib/Crib_southm.png similarity index 100% rename from textures/things/building/childcare/crib/Crib_southm.png rename to Mods/Core/Textures/things/building/childcare/crib/Crib_southm.png diff --git a/textures/things/building/childcare/lessondesk/LessonDesk_east.png b/Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_east.png similarity index 100% rename from textures/things/building/childcare/lessondesk/LessonDesk_east.png rename to Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_east.png diff --git a/textures/things/building/childcare/lessondesk/LessonDesk_north.png b/Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_north.png similarity index 100% rename from textures/things/building/childcare/lessondesk/LessonDesk_north.png rename to Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_north.png diff --git a/textures/things/building/childcare/lessondesk/LessonDesk_south.png b/Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_south.png similarity index 100% rename from textures/things/building/childcare/lessondesk/LessonDesk_south.png rename to Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_south.png diff --git a/textures/things/building/childcare/lessondesk/LessonDesk_west.png b/Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_west.png similarity index 100% rename from textures/things/building/childcare/lessondesk/LessonDesk_west.png rename to Mods/Core/Textures/things/building/childcare/lessondesk/LessonDesk_west.png diff --git a/textures/things/building/door/AnimalFlap_MenuIcon.png b/Mods/Core/Textures/things/building/door/AnimalFlap_MenuIcon.png similarity index 100% rename from textures/things/building/door/AnimalFlap_MenuIcon.png rename to Mods/Core/Textures/things/building/door/AnimalFlap_MenuIcon.png diff --git a/textures/things/building/door/AnimalFlap_Mover.png b/Mods/Core/Textures/things/building/door/AnimalFlap_Mover.png similarity index 100% rename from textures/things/building/door/AnimalFlap_Mover.png rename to Mods/Core/Textures/things/building/door/AnimalFlap_Mover.png diff --git a/textures/things/building/door/Autodoor_MenuIcon.png b/Mods/Core/Textures/things/building/door/Autodoor_MenuIcon.png similarity index 100% rename from textures/things/building/door/Autodoor_MenuIcon.png rename to Mods/Core/Textures/things/building/door/Autodoor_MenuIcon.png diff --git a/textures/things/building/door/Autodoor_Mover.png b/Mods/Core/Textures/things/building/door/Autodoor_Mover.png similarity index 100% rename from textures/things/building/door/Autodoor_Mover.png rename to Mods/Core/Textures/things/building/door/Autodoor_Mover.png diff --git a/textures/things/building/door/DoorSimple_MenuIcon.png b/Mods/Core/Textures/things/building/door/DoorSimple_MenuIcon.png similarity index 100% rename from textures/things/building/door/DoorSimple_MenuIcon.png rename to Mods/Core/Textures/things/building/door/DoorSimple_MenuIcon.png diff --git a/textures/things/building/door/DoorSimple_Mover.png b/Mods/Core/Textures/things/building/door/DoorSimple_Mover.png similarity index 100% rename from textures/things/building/door/DoorSimple_Mover.png rename to Mods/Core/Textures/things/building/door/DoorSimple_Mover.png diff --git a/textures/things/building/door/door_blueprint.png b/Mods/Core/Textures/things/building/door/door_blueprint.png similarity index 100% rename from textures/things/building/door/door_blueprint.png rename to Mods/Core/Textures/things/building/door/door_blueprint.png diff --git a/textures/things/building/exotic/crashedpoisonshippart.png b/Mods/Core/Textures/things/building/exotic/crashedpoisonshippart.png similarity index 100% rename from textures/things/building/exotic/crashedpoisonshippart.png rename to Mods/Core/Textures/things/building/exotic/crashedpoisonshippart.png diff --git a/textures/things/building/exotic/crashedshippart.png b/Mods/Core/Textures/things/building/exotic/crashedshippart.png similarity index 100% rename from textures/things/building/exotic/crashedshippart.png rename to Mods/Core/Textures/things/building/exotic/crashedshippart.png diff --git a/textures/things/building/exotic/shipchunk/shipchunka.png b/Mods/Core/Textures/things/building/exotic/shipchunk/shipchunka.png similarity index 100% rename from textures/things/building/exotic/shipchunk/shipchunka.png rename to Mods/Core/Textures/things/building/exotic/shipchunk/shipchunka.png diff --git a/textures/things/building/exotic/shipchunk/shipchunkb.png b/Mods/Core/Textures/things/building/exotic/shipchunk/shipchunkb.png similarity index 100% rename from textures/things/building/exotic/shipchunk/shipchunkb.png rename to Mods/Core/Textures/things/building/exotic/shipchunk/shipchunkb.png diff --git a/textures/things/building/exotic/shipchunk/shipchunkc.png b/Mods/Core/Textures/things/building/exotic/shipchunk/shipchunkc.png similarity index 100% rename from textures/things/building/exotic/shipchunk/shipchunkc.png rename to Mods/Core/Textures/things/building/exotic/shipchunk/shipchunkc.png diff --git a/textures/things/building/furniture/Armchair_east.png b/Mods/Core/Textures/things/building/furniture/Armchair_east.png similarity index 100% rename from textures/things/building/furniture/Armchair_east.png rename to Mods/Core/Textures/things/building/furniture/Armchair_east.png diff --git a/textures/things/building/furniture/Armchair_north.png b/Mods/Core/Textures/things/building/furniture/Armchair_north.png similarity index 100% rename from textures/things/building/furniture/Armchair_north.png rename to Mods/Core/Textures/things/building/furniture/Armchair_north.png diff --git a/textures/things/building/furniture/Armchair_south.png b/Mods/Core/Textures/things/building/furniture/Armchair_south.png similarity index 100% rename from textures/things/building/furniture/Armchair_south.png rename to Mods/Core/Textures/things/building/furniture/Armchair_south.png diff --git a/textures/things/building/furniture/DarkLamp.png b/Mods/Core/Textures/things/building/furniture/DarkLamp.png similarity index 100% rename from textures/things/building/furniture/DarkLamp.png rename to Mods/Core/Textures/things/building/furniture/DarkLamp.png diff --git a/textures/things/building/furniture/DiningChair_east.png b/Mods/Core/Textures/things/building/furniture/DiningChair_east.png similarity index 100% rename from textures/things/building/furniture/DiningChair_east.png rename to Mods/Core/Textures/things/building/furniture/DiningChair_east.png diff --git a/textures/things/building/furniture/DiningChair_north.png b/Mods/Core/Textures/things/building/furniture/DiningChair_north.png similarity index 100% rename from textures/things/building/furniture/DiningChair_north.png rename to Mods/Core/Textures/things/building/furniture/DiningChair_north.png diff --git a/textures/things/building/furniture/DiningChair_south.png b/Mods/Core/Textures/things/building/furniture/DiningChair_south.png similarity index 100% rename from textures/things/building/furniture/DiningChair_south.png rename to Mods/Core/Textures/things/building/furniture/DiningChair_south.png diff --git a/textures/things/building/furniture/Drape_east.png b/Mods/Core/Textures/things/building/furniture/Drape_east.png similarity index 100% rename from textures/things/building/furniture/Drape_east.png rename to Mods/Core/Textures/things/building/furniture/Drape_east.png diff --git a/textures/things/building/furniture/Drape_eastm.png b/Mods/Core/Textures/things/building/furniture/Drape_eastm.png similarity index 100% rename from textures/things/building/furniture/Drape_eastm.png rename to Mods/Core/Textures/things/building/furniture/Drape_eastm.png diff --git a/textures/things/building/furniture/Drape_south.png b/Mods/Core/Textures/things/building/furniture/Drape_south.png similarity index 100% rename from textures/things/building/furniture/Drape_south.png rename to Mods/Core/Textures/things/building/furniture/Drape_south.png diff --git a/textures/things/building/furniture/Drape_southm.png b/Mods/Core/Textures/things/building/furniture/Drape_southm.png similarity index 100% rename from textures/things/building/furniture/Drape_southm.png rename to Mods/Core/Textures/things/building/furniture/Drape_southm.png diff --git a/textures/things/building/furniture/Dresser_east.png b/Mods/Core/Textures/things/building/furniture/Dresser_east.png similarity index 100% rename from textures/things/building/furniture/Dresser_east.png rename to Mods/Core/Textures/things/building/furniture/Dresser_east.png diff --git a/textures/things/building/furniture/Dresser_north.png b/Mods/Core/Textures/things/building/furniture/Dresser_north.png similarity index 100% rename from textures/things/building/furniture/Dresser_north.png rename to Mods/Core/Textures/things/building/furniture/Dresser_north.png diff --git a/textures/things/building/furniture/Dresser_south.png b/Mods/Core/Textures/things/building/furniture/Dresser_south.png similarity index 100% rename from textures/things/building/furniture/Dresser_south.png rename to Mods/Core/Textures/things/building/furniture/Dresser_south.png diff --git a/textures/things/building/furniture/EndTable_east.png b/Mods/Core/Textures/things/building/furniture/EndTable_east.png similarity index 100% rename from textures/things/building/furniture/EndTable_east.png rename to Mods/Core/Textures/things/building/furniture/EndTable_east.png diff --git a/textures/things/building/furniture/EndTable_north.png b/Mods/Core/Textures/things/building/furniture/EndTable_north.png similarity index 100% rename from textures/things/building/furniture/EndTable_north.png rename to Mods/Core/Textures/things/building/furniture/EndTable_north.png diff --git a/textures/things/building/furniture/EndTable_south.png b/Mods/Core/Textures/things/building/furniture/EndTable_south.png similarity index 100% rename from textures/things/building/furniture/EndTable_south.png rename to Mods/Core/Textures/things/building/furniture/EndTable_south.png diff --git a/textures/things/building/furniture/GrandStele.png b/Mods/Core/Textures/things/building/furniture/GrandStele.png similarity index 100% rename from textures/things/building/furniture/GrandStele.png rename to Mods/Core/Textures/things/building/furniture/GrandStele.png diff --git a/textures/things/building/furniture/GrandThrone_east.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_east.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_east.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_east.png diff --git a/textures/things/building/furniture/GrandThrone_eastm.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_eastm.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_eastm.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_eastm.png diff --git a/textures/things/building/furniture/GrandThrone_north.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_north.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_north.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_north.png diff --git a/textures/things/building/furniture/GrandThrone_northm.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_northm.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_northm.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_northm.png diff --git a/textures/things/building/furniture/GrandThrone_south.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_south.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_south.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_south.png diff --git a/textures/things/building/furniture/GrandThrone_southm.png b/Mods/Core/Textures/things/building/furniture/GrandThrone_southm.png similarity index 100% rename from textures/things/building/furniture/GrandThrone_southm.png rename to Mods/Core/Textures/things/building/furniture/GrandThrone_southm.png diff --git a/textures/things/building/furniture/LampStanding.png b/Mods/Core/Textures/things/building/furniture/LampStanding.png similarity index 100% rename from textures/things/building/furniture/LampStanding.png rename to Mods/Core/Textures/things/building/furniture/LampStanding.png diff --git a/textures/things/building/furniture/LargeSteleA.png b/Mods/Core/Textures/things/building/furniture/LargeSteleA.png similarity index 100% rename from textures/things/building/furniture/LargeSteleA.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleA.png diff --git a/textures/things/building/furniture/LargeSteleB.png b/Mods/Core/Textures/things/building/furniture/LargeSteleB.png similarity index 100% rename from textures/things/building/furniture/LargeSteleB.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleB.png diff --git a/textures/things/building/furniture/LargeSteleC.png b/Mods/Core/Textures/things/building/furniture/LargeSteleC.png similarity index 100% rename from textures/things/building/furniture/LargeSteleC.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleC.png diff --git a/textures/things/building/furniture/LargeSteleD.png b/Mods/Core/Textures/things/building/furniture/LargeSteleD.png similarity index 100% rename from textures/things/building/furniture/LargeSteleD.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleD.png diff --git a/textures/things/building/furniture/LargeSteleE.png b/Mods/Core/Textures/things/building/furniture/LargeSteleE.png similarity index 100% rename from textures/things/building/furniture/LargeSteleE.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleE.png diff --git a/textures/things/building/furniture/LargeSteleF.png b/Mods/Core/Textures/things/building/furniture/LargeSteleF.png similarity index 100% rename from textures/things/building/furniture/LargeSteleF.png rename to Mods/Core/Textures/things/building/furniture/LargeSteleF.png diff --git a/textures/things/building/furniture/PlantPot.png b/Mods/Core/Textures/things/building/furniture/PlantPot.png similarity index 100% rename from textures/things/building/furniture/PlantPot.png rename to Mods/Core/Textures/things/building/furniture/PlantPot.png diff --git a/textures/things/building/furniture/Stool_east.png b/Mods/Core/Textures/things/building/furniture/Stool_east.png similarity index 100% rename from textures/things/building/furniture/Stool_east.png rename to Mods/Core/Textures/things/building/furniture/Stool_east.png diff --git a/textures/things/building/furniture/Stool_north.png b/Mods/Core/Textures/things/building/furniture/Stool_north.png similarity index 100% rename from textures/things/building/furniture/Stool_north.png rename to Mods/Core/Textures/things/building/furniture/Stool_north.png diff --git a/textures/things/building/furniture/Throne_east.png b/Mods/Core/Textures/things/building/furniture/Throne_east.png similarity index 100% rename from textures/things/building/furniture/Throne_east.png rename to Mods/Core/Textures/things/building/furniture/Throne_east.png diff --git a/textures/things/building/furniture/Throne_north.png b/Mods/Core/Textures/things/building/furniture/Throne_north.png similarity index 100% rename from textures/things/building/furniture/Throne_north.png rename to Mods/Core/Textures/things/building/furniture/Throne_north.png diff --git a/textures/things/building/furniture/Throne_south.png b/Mods/Core/Textures/things/building/furniture/Throne_south.png similarity index 100% rename from textures/things/building/furniture/Throne_south.png rename to Mods/Core/Textures/things/building/furniture/Throne_south.png diff --git a/textures/things/building/furniture/armchair_back.png b/Mods/Core/Textures/things/building/furniture/armchair_back.png similarity index 100% rename from textures/things/building/furniture/armchair_back.png rename to Mods/Core/Textures/things/building/furniture/armchair_back.png diff --git a/textures/things/building/furniture/armchair_front.png b/Mods/Core/Textures/things/building/furniture/armchair_front.png similarity index 100% rename from textures/things/building/furniture/armchair_front.png rename to Mods/Core/Textures/things/building/furniture/armchair_front.png diff --git a/textures/things/building/furniture/armchair_side.png b/Mods/Core/Textures/things/building/furniture/armchair_side.png similarity index 100% rename from textures/things/building/furniture/armchair_side.png rename to Mods/Core/Textures/things/building/furniture/armchair_side.png diff --git a/textures/things/building/furniture/bed/Bed_east.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_east.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_east.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_east.png diff --git a/textures/things/building/furniture/bed/Bed_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_eastm.png diff --git a/textures/things/building/furniture/bed/Bed_north.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_north.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_north.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_north.png diff --git a/textures/things/building/furniture/bed/Bed_northm.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_northm.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_northm.png diff --git a/textures/things/building/furniture/bed/Bed_south.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_south.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_south.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_south.png diff --git a/textures/things/building/furniture/bed/Bed_southm.png b/Mods/Core/Textures/things/building/furniture/bed/Bed_southm.png similarity index 100% rename from textures/things/building/furniture/bed/Bed_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bed_southm.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_east.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_east.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_east.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_east.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_eastm.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_north.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_north.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_north.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_north.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_northm.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_northm.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_northm.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_south.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_south.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_south.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_south.png diff --git a/textures/things/building/furniture/bed/BedrollDouble_southm.png b/Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_southm.png similarity index 100% rename from textures/things/building/furniture/bed/BedrollDouble_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/BedrollDouble_southm.png diff --git a/textures/things/building/furniture/bed/Bedroll_east.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_east.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_east.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_east.png diff --git a/textures/things/building/furniture/bed/Bedroll_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_eastm.png diff --git a/textures/things/building/furniture/bed/Bedroll_north.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_north.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_north.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_north.png diff --git a/textures/things/building/furniture/bed/Bedroll_northm.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_northm.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_northm.png diff --git a/textures/things/building/furniture/bed/Bedroll_south.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_south.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_south.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_south.png diff --git a/textures/things/building/furniture/bed/Bedroll_southm.png b/Mods/Core/Textures/things/building/furniture/bed/Bedroll_southm.png similarity index 100% rename from textures/things/building/furniture/bed/Bedroll_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/Bedroll_southm.png diff --git a/textures/things/building/furniture/bed/DoubleBed_east.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_east.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_east.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_east.png diff --git a/textures/things/building/furniture/bed/DoubleBed_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_eastm.png diff --git a/textures/things/building/furniture/bed/DoubleBed_north.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_north.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_north.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_north.png diff --git a/textures/things/building/furniture/bed/DoubleBed_northm.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_northm.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_northm.png diff --git a/textures/things/building/furniture/bed/DoubleBed_south.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_south.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_south.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_south.png diff --git a/textures/things/building/furniture/bed/DoubleBed_southm.png b/Mods/Core/Textures/things/building/furniture/bed/DoubleBed_southm.png similarity index 100% rename from textures/things/building/furniture/bed/DoubleBed_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/DoubleBed_southm.png diff --git a/textures/things/building/furniture/bed/HospitalBed_east.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_east.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_east.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_east.png diff --git a/textures/things/building/furniture/bed/HospitalBed_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_eastm.png diff --git a/textures/things/building/furniture/bed/HospitalBed_north.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_north.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_north.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_north.png diff --git a/textures/things/building/furniture/bed/HospitalBed_northm.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_northm.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_northm.png diff --git a/textures/things/building/furniture/bed/HospitalBed_south.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_south.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_south.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_south.png diff --git a/textures/things/building/furniture/bed/HospitalBed_southm.png b/Mods/Core/Textures/things/building/furniture/bed/HospitalBed_southm.png similarity index 100% rename from textures/things/building/furniture/bed/HospitalBed_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/HospitalBed_southm.png diff --git a/textures/things/building/furniture/bed/RoyalBed_east.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_east.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_east.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_east.png diff --git a/textures/things/building/furniture/bed/RoyalBed_eastm.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_eastm.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_eastm.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_eastm.png diff --git a/textures/things/building/furniture/bed/RoyalBed_north.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_north.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_north.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_north.png diff --git a/textures/things/building/furniture/bed/RoyalBed_northm.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_northm.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_northm.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_northm.png diff --git a/textures/things/building/furniture/bed/RoyalBed_south.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_south.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_south.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_south.png diff --git a/textures/things/building/furniture/bed/RoyalBed_southm.png b/Mods/Core/Textures/things/building/furniture/bed/RoyalBed_southm.png similarity index 100% rename from textures/things/building/furniture/bed/RoyalBed_southm.png rename to Mods/Core/Textures/things/building/furniture/bed/RoyalBed_southm.png diff --git a/textures/things/building/furniture/bed/bed_back.png b/Mods/Core/Textures/things/building/furniture/bed/bed_back.png similarity index 100% rename from textures/things/building/furniture/bed/bed_back.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_back.png diff --git a/textures/things/building/furniture/bed/bed_backm.png b/Mods/Core/Textures/things/building/furniture/bed/bed_backm.png similarity index 100% rename from textures/things/building/furniture/bed/bed_backm.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_backm.png diff --git a/textures/things/building/furniture/bed/bed_front.png b/Mods/Core/Textures/things/building/furniture/bed/bed_front.png similarity index 100% rename from textures/things/building/furniture/bed/bed_front.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_front.png diff --git a/textures/things/building/furniture/bed/bed_frontm.png b/Mods/Core/Textures/things/building/furniture/bed/bed_frontm.png similarity index 100% rename from textures/things/building/furniture/bed/bed_frontm.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_frontm.png diff --git a/textures/things/building/furniture/bed/bed_side.png b/Mods/Core/Textures/things/building/furniture/bed/bed_side.png similarity index 100% rename from textures/things/building/furniture/bed/bed_side.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_side.png diff --git a/textures/things/building/furniture/bed/bed_sidem.png b/Mods/Core/Textures/things/building/furniture/bed/bed_sidem.png similarity index 100% rename from textures/things/building/furniture/bed/bed_sidem.png rename to Mods/Core/Textures/things/building/furniture/bed/bed_sidem.png diff --git a/textures/things/building/furniture/bed/doublebed_back.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_back.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_back.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_back.png diff --git a/textures/things/building/furniture/bed/doublebed_backm.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_backm.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_backm.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_backm.png diff --git a/textures/things/building/furniture/bed/doublebed_front.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_front.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_front.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_front.png diff --git a/textures/things/building/furniture/bed/doublebed_frontm.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_frontm.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_frontm.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_frontm.png diff --git a/textures/things/building/furniture/bed/doublebed_side.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_side.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_side.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_side.png diff --git a/textures/things/building/furniture/bed/doublebed_sidem.png b/Mods/Core/Textures/things/building/furniture/bed/doublebed_sidem.png similarity index 100% rename from textures/things/building/furniture/bed/doublebed_sidem.png rename to Mods/Core/Textures/things/building/furniture/bed/doublebed_sidem.png diff --git a/textures/things/building/furniture/bed/hospitalbed_back.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_back.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_back.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_back.png diff --git a/textures/things/building/furniture/bed/hospitalbed_backm.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_backm.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_backm.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_backm.png diff --git a/textures/things/building/furniture/bed/hospitalbed_front.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_front.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_front.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_front.png diff --git a/textures/things/building/furniture/bed/hospitalbed_frontm.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_frontm.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_frontm.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_frontm.png diff --git a/textures/things/building/furniture/bed/hospitalbed_side.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_side.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_side.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_side.png diff --git a/textures/things/building/furniture/bed/hospitalbed_sidem.png b/Mods/Core/Textures/things/building/furniture/bed/hospitalbed_sidem.png similarity index 100% rename from textures/things/building/furniture/bed/hospitalbed_sidem.png rename to Mods/Core/Textures/things/building/furniture/bed/hospitalbed_sidem.png diff --git a/textures/things/building/furniture/bed/royalbed_back.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_back.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_back.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_back.png diff --git a/textures/things/building/furniture/bed/royalbed_backm.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_backm.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_backm.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_backm.png diff --git a/textures/things/building/furniture/bed/royalbed_front.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_front.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_front.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_front.png diff --git a/textures/things/building/furniture/bed/royalbed_frontm.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_frontm.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_frontm.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_frontm.png diff --git a/textures/things/building/furniture/bed/royalbed_side.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_side.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_side.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_side.png diff --git a/textures/things/building/furniture/bed/royalbed_sidem.png b/Mods/Core/Textures/things/building/furniture/bed/royalbed_sidem.png similarity index 100% rename from textures/things/building/furniture/bed/royalbed_sidem.png rename to Mods/Core/Textures/things/building/furniture/bed/royalbed_sidem.png diff --git a/textures/things/building/furniture/bed/sleepspot_back.png b/Mods/Core/Textures/things/building/furniture/bed/sleepspot_back.png similarity index 100% rename from textures/things/building/furniture/bed/sleepspot_back.png rename to Mods/Core/Textures/things/building/furniture/bed/sleepspot_back.png diff --git a/textures/things/building/furniture/bed/sleepspot_front.png b/Mods/Core/Textures/things/building/furniture/bed/sleepspot_front.png similarity index 100% rename from textures/things/building/furniture/bed/sleepspot_front.png rename to Mods/Core/Textures/things/building/furniture/bed/sleepspot_front.png diff --git a/textures/things/building/furniture/bed/sleepspot_side.png b/Mods/Core/Textures/things/building/furniture/bed/sleepspot_side.png similarity index 100% rename from textures/things/building/furniture/bed/sleepspot_side.png rename to Mods/Core/Textures/things/building/furniture/bed/sleepspot_side.png diff --git a/textures/things/building/furniture/diningchair_back.png b/Mods/Core/Textures/things/building/furniture/diningchair_back.png similarity index 100% rename from textures/things/building/furniture/diningchair_back.png rename to Mods/Core/Textures/things/building/furniture/diningchair_back.png diff --git a/textures/things/building/furniture/diningchair_front.png b/Mods/Core/Textures/things/building/furniture/diningchair_front.png similarity index 100% rename from textures/things/building/furniture/diningchair_front.png rename to Mods/Core/Textures/things/building/furniture/diningchair_front.png diff --git a/textures/things/building/furniture/diningchair_side.png b/Mods/Core/Textures/things/building/furniture/diningchair_side.png similarity index 100% rename from textures/things/building/furniture/diningchair_side.png rename to Mods/Core/Textures/things/building/furniture/diningchair_side.png diff --git a/textures/things/building/furniture/shelf_back.png b/Mods/Core/Textures/things/building/furniture/shelf_back.png similarity index 100% rename from textures/things/building/furniture/shelf_back.png rename to Mods/Core/Textures/things/building/furniture/shelf_back.png diff --git a/textures/things/building/furniture/shelf_front.png b/Mods/Core/Textures/things/building/furniture/shelf_front.png similarity index 100% rename from textures/things/building/furniture/shelf_front.png rename to Mods/Core/Textures/things/building/furniture/shelf_front.png diff --git a/textures/things/building/furniture/shelf_side.png b/Mods/Core/Textures/things/building/furniture/shelf_side.png similarity index 100% rename from textures/things/building/furniture/shelf_side.png rename to Mods/Core/Textures/things/building/furniture/shelf_side.png diff --git a/textures/things/building/furniture/stool_back.png b/Mods/Core/Textures/things/building/furniture/stool_back.png similarity index 100% rename from textures/things/building/furniture/stool_back.png rename to Mods/Core/Textures/things/building/furniture/stool_back.png diff --git a/textures/things/building/furniture/stool_side.png b/Mods/Core/Textures/things/building/furniture/stool_side.png similarity index 100% rename from textures/things/building/furniture/stool_side.png rename to Mods/Core/Textures/things/building/furniture/stool_side.png diff --git a/textures/things/building/furniture/tablelong_back.png b/Mods/Core/Textures/things/building/furniture/tablelong_back.png similarity index 100% rename from textures/things/building/furniture/tablelong_back.png rename to Mods/Core/Textures/things/building/furniture/tablelong_back.png diff --git a/textures/things/building/furniture/tablelong_side.png b/Mods/Core/Textures/things/building/furniture/tablelong_side.png similarity index 100% rename from textures/things/building/furniture/tablelong_side.png rename to Mods/Core/Textures/things/building/furniture/tablelong_side.png diff --git a/textures/things/building/furniture/tableshort_back.png b/Mods/Core/Textures/things/building/furniture/tableshort_back.png similarity index 100% rename from textures/things/building/furniture/tableshort_back.png rename to Mods/Core/Textures/things/building/furniture/tableshort_back.png diff --git a/textures/things/building/furniture/walllamp/WallLamp_MenuIcon.png b/Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_MenuIcon.png similarity index 100% rename from textures/things/building/furniture/walllamp/WallLamp_MenuIcon.png rename to Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_MenuIcon.png diff --git a/textures/things/building/furniture/walllamp/WallLamp_east.png b/Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_east.png similarity index 100% rename from textures/things/building/furniture/walllamp/WallLamp_east.png rename to Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_east.png diff --git a/textures/things/building/furniture/walllamp/WallLamp_north.png b/Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_north.png similarity index 100% rename from textures/things/building/furniture/walllamp/WallLamp_north.png rename to Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_north.png diff --git a/textures/things/building/furniture/walllamp/WallLamp_south.png b/Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_south.png similarity index 100% rename from textures/things/building/furniture/walllamp/WallLamp_south.png rename to Mods/Core/Textures/things/building/furniture/walllamp/WallLamp_south.png diff --git a/textures/things/building/joy/BilliardsTable_east.png b/Mods/Core/Textures/things/building/joy/BilliardsTable_east.png similarity index 100% rename from textures/things/building/joy/BilliardsTable_east.png rename to Mods/Core/Textures/things/building/joy/BilliardsTable_east.png diff --git a/textures/things/building/joy/BilliardsTable_eastm.png b/Mods/Core/Textures/things/building/joy/BilliardsTable_eastm.png similarity index 100% rename from textures/things/building/joy/BilliardsTable_eastm.png rename to Mods/Core/Textures/things/building/joy/BilliardsTable_eastm.png diff --git a/textures/things/building/joy/BilliardsTable_north.png b/Mods/Core/Textures/things/building/joy/BilliardsTable_north.png similarity index 100% rename from textures/things/building/joy/BilliardsTable_north.png rename to Mods/Core/Textures/things/building/joy/BilliardsTable_north.png diff --git a/textures/things/building/joy/BilliardsTable_northm.png b/Mods/Core/Textures/things/building/joy/BilliardsTable_northm.png similarity index 100% rename from textures/things/building/joy/BilliardsTable_northm.png rename to Mods/Core/Textures/things/building/joy/BilliardsTable_northm.png diff --git a/textures/things/building/joy/FlatscreenTelevision_east.png b/Mods/Core/Textures/things/building/joy/FlatscreenTelevision_east.png similarity index 100% rename from textures/things/building/joy/FlatscreenTelevision_east.png rename to Mods/Core/Textures/things/building/joy/FlatscreenTelevision_east.png diff --git a/textures/things/building/joy/FlatscreenTelevision_north.png b/Mods/Core/Textures/things/building/joy/FlatscreenTelevision_north.png similarity index 100% rename from textures/things/building/joy/FlatscreenTelevision_north.png rename to Mods/Core/Textures/things/building/joy/FlatscreenTelevision_north.png diff --git a/textures/things/building/joy/FlatscreenTelevision_south.png b/Mods/Core/Textures/things/building/joy/FlatscreenTelevision_south.png similarity index 100% rename from textures/things/building/joy/FlatscreenTelevision_south.png rename to Mods/Core/Textures/things/building/joy/FlatscreenTelevision_south.png diff --git a/textures/things/building/joy/GrandPiano_east.png b/Mods/Core/Textures/things/building/joy/GrandPiano_east.png similarity index 100% rename from textures/things/building/joy/GrandPiano_east.png rename to Mods/Core/Textures/things/building/joy/GrandPiano_east.png diff --git a/textures/things/building/joy/GrandPiano_north.png b/Mods/Core/Textures/things/building/joy/GrandPiano_north.png similarity index 100% rename from textures/things/building/joy/GrandPiano_north.png rename to Mods/Core/Textures/things/building/joy/GrandPiano_north.png diff --git a/textures/things/building/joy/GrandPiano_south.png b/Mods/Core/Textures/things/building/joy/GrandPiano_south.png similarity index 100% rename from textures/things/building/joy/GrandPiano_south.png rename to Mods/Core/Textures/things/building/joy/GrandPiano_south.png diff --git a/textures/things/building/joy/GrandPiano_west.png b/Mods/Core/Textures/things/building/joy/GrandPiano_west.png similarity index 100% rename from textures/things/building/joy/GrandPiano_west.png rename to Mods/Core/Textures/things/building/joy/GrandPiano_west.png diff --git a/textures/things/building/joy/Harpsichord_east.png b/Mods/Core/Textures/things/building/joy/Harpsichord_east.png similarity index 100% rename from textures/things/building/joy/Harpsichord_east.png rename to Mods/Core/Textures/things/building/joy/Harpsichord_east.png diff --git a/textures/things/building/joy/Harpsichord_north.png b/Mods/Core/Textures/things/building/joy/Harpsichord_north.png similarity index 100% rename from textures/things/building/joy/Harpsichord_north.png rename to Mods/Core/Textures/things/building/joy/Harpsichord_north.png diff --git a/textures/things/building/joy/Harpsichord_south.png b/Mods/Core/Textures/things/building/joy/Harpsichord_south.png similarity index 100% rename from textures/things/building/joy/Harpsichord_south.png rename to Mods/Core/Textures/things/building/joy/Harpsichord_south.png diff --git a/textures/things/building/joy/Harpsichord_west.png b/Mods/Core/Textures/things/building/joy/Harpsichord_west.png similarity index 100% rename from textures/things/building/joy/Harpsichord_west.png rename to Mods/Core/Textures/things/building/joy/Harpsichord_west.png diff --git a/textures/things/building/joy/PokerTable.png b/Mods/Core/Textures/things/building/joy/PokerTable.png similarity index 100% rename from textures/things/building/joy/PokerTable.png rename to Mods/Core/Textures/things/building/joy/PokerTable.png diff --git a/textures/things/building/joy/PokerTable_m.png b/Mods/Core/Textures/things/building/joy/PokerTable_m.png similarity index 100% rename from textures/things/building/joy/PokerTable_m.png rename to Mods/Core/Textures/things/building/joy/PokerTable_m.png diff --git a/textures/things/building/joy/ToFix_HoopstoneRing.png b/Mods/Core/Textures/things/building/joy/ToFix_HoopstoneRing.png similarity index 100% rename from textures/things/building/joy/ToFix_HoopstoneRing.png rename to Mods/Core/Textures/things/building/joy/ToFix_HoopstoneRing.png diff --git a/textures/things/building/joy/billiardstable_back.png b/Mods/Core/Textures/things/building/joy/billiardstable_back.png similarity index 100% rename from textures/things/building/joy/billiardstable_back.png rename to Mods/Core/Textures/things/building/joy/billiardstable_back.png diff --git a/textures/things/building/joy/billiardstable_backm.png b/Mods/Core/Textures/things/building/joy/billiardstable_backm.png similarity index 100% rename from textures/things/building/joy/billiardstable_backm.png rename to Mods/Core/Textures/things/building/joy/billiardstable_backm.png diff --git a/textures/things/building/joy/billiardstable_side.png b/Mods/Core/Textures/things/building/joy/billiardstable_side.png similarity index 100% rename from textures/things/building/joy/billiardstable_side.png rename to Mods/Core/Textures/things/building/joy/billiardstable_side.png diff --git a/textures/things/building/joy/billiardstable_sidem.png b/Mods/Core/Textures/things/building/joy/billiardstable_sidem.png similarity index 100% rename from textures/things/building/joy/billiardstable_sidem.png rename to Mods/Core/Textures/things/building/joy/billiardstable_sidem.png diff --git a/textures/things/building/joy/chesstable.png b/Mods/Core/Textures/things/building/joy/chesstable.png similarity index 100% rename from textures/things/building/joy/chesstable.png rename to Mods/Core/Textures/things/building/joy/chesstable.png diff --git a/textures/things/building/joy/flatscreentelevision_back.png b/Mods/Core/Textures/things/building/joy/flatscreentelevision_back.png similarity index 100% rename from textures/things/building/joy/flatscreentelevision_back.png rename to Mods/Core/Textures/things/building/joy/flatscreentelevision_back.png diff --git a/textures/things/building/joy/flatscreentelevision_front.png b/Mods/Core/Textures/things/building/joy/flatscreentelevision_front.png similarity index 100% rename from textures/things/building/joy/flatscreentelevision_front.png rename to Mods/Core/Textures/things/building/joy/flatscreentelevision_front.png diff --git a/textures/things/building/joy/flatscreentelevision_side.png b/Mods/Core/Textures/things/building/joy/flatscreentelevision_side.png similarity index 100% rename from textures/things/building/joy/flatscreentelevision_side.png rename to Mods/Core/Textures/things/building/joy/flatscreentelevision_side.png diff --git a/textures/things/building/joy/harp_south.png b/Mods/Core/Textures/things/building/joy/harp_south.png similarity index 100% rename from textures/things/building/joy/harp_south.png rename to Mods/Core/Textures/things/building/joy/harp_south.png diff --git a/textures/things/building/joy/horseshoespin.png b/Mods/Core/Textures/things/building/joy/horseshoespin.png similarity index 100% rename from textures/things/building/joy/horseshoespin.png rename to Mods/Core/Textures/things/building/joy/horseshoespin.png diff --git a/textures/things/building/joy/megascreentelevision_back.png b/Mods/Core/Textures/things/building/joy/megascreentelevision_back.png similarity index 100% rename from textures/things/building/joy/megascreentelevision_back.png rename to Mods/Core/Textures/things/building/joy/megascreentelevision_back.png diff --git a/textures/things/building/joy/megascreentelevision_front.png b/Mods/Core/Textures/things/building/joy/megascreentelevision_front.png similarity index 100% rename from textures/things/building/joy/megascreentelevision_front.png rename to Mods/Core/Textures/things/building/joy/megascreentelevision_front.png diff --git a/textures/things/building/joy/megascreentelevision_side.png b/Mods/Core/Textures/things/building/joy/megascreentelevision_side.png similarity index 100% rename from textures/things/building/joy/megascreentelevision_side.png rename to Mods/Core/Textures/things/building/joy/megascreentelevision_side.png diff --git a/textures/things/building/joy/telescope.png b/Mods/Core/Textures/things/building/joy/telescope.png similarity index 100% rename from textures/things/building/joy/telescope.png rename to Mods/Core/Textures/things/building/joy/telescope.png diff --git a/textures/things/building/joy/tubetelevision_back.png b/Mods/Core/Textures/things/building/joy/tubetelevision_back.png similarity index 100% rename from textures/things/building/joy/tubetelevision_back.png rename to Mods/Core/Textures/things/building/joy/tubetelevision_back.png diff --git a/textures/things/building/joy/tubetelevision_front.png b/Mods/Core/Textures/things/building/joy/tubetelevision_front.png similarity index 100% rename from textures/things/building/joy/tubetelevision_front.png rename to Mods/Core/Textures/things/building/joy/tubetelevision_front.png diff --git a/textures/things/building/joy/tubetelevision_side.png b/Mods/Core/Textures/things/building/joy/tubetelevision_side.png similarity index 100% rename from textures/things/building/joy/tubetelevision_side.png rename to Mods/Core/Textures/things/building/joy/tubetelevision_side.png diff --git a/textures/things/building/linked/Barricade_Atlas.png b/Mods/Core/Textures/things/building/linked/Barricade_Atlas.png similarity index 100% rename from textures/things/building/linked/Barricade_Atlas.png rename to Mods/Core/Textures/things/building/linked/Barricade_Atlas.png diff --git a/textures/things/building/linked/RockFlecked_Atlas.png b/Mods/Core/Textures/things/building/linked/RockFlecked_Atlas.png similarity index 100% rename from textures/things/building/linked/RockFlecked_Atlas.png rename to Mods/Core/Textures/things/building/linked/RockFlecked_Atlas.png diff --git a/textures/things/building/linked/Rock_Atlas.png b/Mods/Core/Textures/things/building/linked/Rock_Atlas.png similarity index 100% rename from textures/things/building/linked/Rock_Atlas.png rename to Mods/Core/Textures/things/building/linked/Rock_Atlas.png diff --git a/textures/things/building/linked/compactedmachinery_atlas.png b/Mods/Core/Textures/things/building/linked/compactedmachinery_atlas.png similarity index 100% rename from textures/things/building/linked/compactedmachinery_atlas.png rename to Mods/Core/Textures/things/building/linked/compactedmachinery_atlas.png diff --git a/textures/things/building/linked/powerconduit_atlas.png b/Mods/Core/Textures/things/building/linked/powerconduit_atlas.png similarity index 100% rename from textures/things/building/linked/powerconduit_atlas.png rename to Mods/Core/Textures/things/building/linked/powerconduit_atlas.png diff --git a/textures/things/building/linked/powerconduit_blueprint_atlas.png b/Mods/Core/Textures/things/building/linked/powerconduit_blueprint_atlas.png similarity index 100% rename from textures/things/building/linked/powerconduit_blueprint_atlas.png rename to Mods/Core/Textures/things/building/linked/powerconduit_blueprint_atlas.png diff --git a/textures/things/building/linked/powerconduit_menuicon.png b/Mods/Core/Textures/things/building/linked/powerconduit_menuicon.png similarity index 100% rename from textures/things/building/linked/powerconduit_menuicon.png rename to Mods/Core/Textures/things/building/linked/powerconduit_menuicon.png diff --git a/textures/things/building/linked/rockflecked_atlas_m.png b/Mods/Core/Textures/things/building/linked/rockflecked_atlas_m.png similarity index 100% rename from textures/things/building/linked/rockflecked_atlas_m.png rename to Mods/Core/Textures/things/building/linked/rockflecked_atlas_m.png diff --git a/textures/things/building/linked/sandbags_atlas.png b/Mods/Core/Textures/things/building/linked/sandbags_atlas.png similarity index 100% rename from textures/things/building/linked/sandbags_atlas.png rename to Mods/Core/Textures/things/building/linked/sandbags_atlas.png diff --git a/textures/things/building/linked/sandbags_blueprint_atlas.png b/Mods/Core/Textures/things/building/linked/sandbags_blueprint_atlas.png similarity index 100% rename from textures/things/building/linked/sandbags_blueprint_atlas.png rename to Mods/Core/Textures/things/building/linked/sandbags_blueprint_atlas.png diff --git a/textures/things/building/linked/sandbags_menuicon.png b/Mods/Core/Textures/things/building/linked/sandbags_menuicon.png similarity index 100% rename from textures/things/building/linked/sandbags_menuicon.png rename to Mods/Core/Textures/things/building/linked/sandbags_menuicon.png diff --git a/textures/things/building/linked/wall/wall_atlas_bricks.png b/Mods/Core/Textures/things/building/linked/wall/wall_atlas_bricks.png similarity index 100% rename from textures/things/building/linked/wall/wall_atlas_bricks.png rename to Mods/Core/Textures/things/building/linked/wall/wall_atlas_bricks.png diff --git a/textures/things/building/linked/wall/wall_atlas_planks.png b/Mods/Core/Textures/things/building/linked/wall/wall_atlas_planks.png similarity index 100% rename from textures/things/building/linked/wall/wall_atlas_planks.png rename to Mods/Core/Textures/things/building/linked/wall/wall_atlas_planks.png diff --git a/textures/things/building/linked/wall/wall_atlas_smooth.png b/Mods/Core/Textures/things/building/linked/wall/wall_atlas_smooth.png similarity index 100% rename from textures/things/building/linked/wall/wall_atlas_smooth.png rename to Mods/Core/Textures/things/building/linked/wall/wall_atlas_smooth.png diff --git a/textures/things/building/linked/wall_blueprint_atlas.png b/Mods/Core/Textures/things/building/linked/wall_blueprint_atlas.png similarity index 100% rename from textures/things/building/linked/wall_blueprint_atlas.png rename to Mods/Core/Textures/things/building/linked/wall_blueprint_atlas.png diff --git a/textures/things/building/linked/wallbricks_menuicon.png b/Mods/Core/Textures/things/building/linked/wallbricks_menuicon.png similarity index 100% rename from textures/things/building/linked/wallbricks_menuicon.png rename to Mods/Core/Textures/things/building/linked/wallbricks_menuicon.png diff --git a/textures/things/building/linked/wallplanks_menuicon.png b/Mods/Core/Textures/things/building/linked/wallplanks_menuicon.png similarity index 100% rename from textures/things/building/linked/wallplanks_menuicon.png rename to Mods/Core/Textures/things/building/linked/wallplanks_menuicon.png diff --git a/textures/things/building/linked/wallsmooth_menuicon.png b/Mods/Core/Textures/things/building/linked/wallsmooth_menuicon.png similarity index 100% rename from textures/things/building/linked/wallsmooth_menuicon.png rename to Mods/Core/Textures/things/building/linked/wallsmooth_menuicon.png diff --git a/textures/things/building/mech/ActivatorCountdown.png b/Mods/Core/Textures/things/building/mech/ActivatorCountdown.png similarity index 100% rename from textures/things/building/mech/ActivatorCountdown.png rename to Mods/Core/Textures/things/building/mech/ActivatorCountdown.png diff --git a/textures/things/building/mech/ActivatorProximity.png b/Mods/Core/Textures/things/building/mech/ActivatorProximity.png similarity index 100% rename from textures/things/building/mech/ActivatorProximity.png rename to Mods/Core/Textures/things/building/mech/ActivatorProximity.png diff --git a/textures/things/building/mech/ShieldGeneratorBullet.png b/Mods/Core/Textures/things/building/mech/ShieldGeneratorBullet.png similarity index 100% rename from textures/things/building/mech/ShieldGeneratorBullet.png rename to Mods/Core/Textures/things/building/mech/ShieldGeneratorBullet.png diff --git a/textures/things/building/mech/ShieldGeneratorMortar.png b/Mods/Core/Textures/things/building/mech/ShieldGeneratorMortar.png similarity index 100% rename from textures/things/building/mech/ShieldGeneratorMortar.png rename to Mods/Core/Textures/things/building/mech/ShieldGeneratorMortar.png diff --git a/textures/things/building/mech/TurretMechanoid2x2_Base.png b/Mods/Core/Textures/things/building/mech/TurretMechanoid2x2_Base.png similarity index 100% rename from textures/things/building/mech/TurretMechanoid2x2_Base.png rename to Mods/Core/Textures/things/building/mech/TurretMechanoid2x2_Base.png diff --git a/textures/things/building/mech/TurretMechanoidMini_Base.png b/Mods/Core/Textures/things/building/mech/TurretMechanoidMini_Base.png similarity index 100% rename from textures/things/building/mech/TurretMechanoidMini_Base.png rename to Mods/Core/Textures/things/building/mech/TurretMechanoidMini_Base.png diff --git a/textures/things/building/mech/UnstablePowerCell.png b/Mods/Core/Textures/things/building/mech/UnstablePowerCell.png similarity index 100% rename from textures/things/building/mech/UnstablePowerCell.png rename to Mods/Core/Textures/things/building/mech/UnstablePowerCell.png diff --git a/textures/things/building/misc/AnimusStone.png b/Mods/Core/Textures/things/building/misc/AnimusStone.png similarity index 100% rename from textures/things/building/misc/AnimusStone.png rename to Mods/Core/Textures/things/building/misc/AnimusStone.png diff --git a/textures/things/building/misc/BandNode.png b/Mods/Core/Textures/things/building/misc/BandNode.png similarity index 100% rename from textures/things/building/misc/BandNode.png rename to Mods/Core/Textures/things/building/misc/BandNode.png diff --git a/textures/things/building/misc/Brazier.png b/Mods/Core/Textures/things/building/misc/Brazier.png similarity index 100% rename from textures/things/building/misc/Brazier.png rename to Mods/Core/Textures/things/building/misc/Brazier.png diff --git a/textures/things/building/misc/Brazier_m.png b/Mods/Core/Textures/things/building/misc/Brazier_m.png similarity index 100% rename from textures/things/building/misc/Brazier_m.png rename to Mods/Core/Textures/things/building/misc/Brazier_m.png diff --git a/textures/things/building/misc/ClimateAdjuster.png b/Mods/Core/Textures/things/building/misc/ClimateAdjuster.png similarity index 100% rename from textures/things/building/misc/ClimateAdjuster.png rename to Mods/Core/Textures/things/building/misc/ClimateAdjuster.png diff --git a/textures/things/building/misc/CommsConsole_east.png b/Mods/Core/Textures/things/building/misc/CommsConsole_east.png similarity index 100% rename from textures/things/building/misc/CommsConsole_east.png rename to Mods/Core/Textures/things/building/misc/CommsConsole_east.png diff --git a/textures/things/building/misc/CommsConsole_north.png b/Mods/Core/Textures/things/building/misc/CommsConsole_north.png similarity index 100% rename from textures/things/building/misc/CommsConsole_north.png rename to Mods/Core/Textures/things/building/misc/CommsConsole_north.png diff --git a/textures/things/building/misc/CommsConsole_south.png b/Mods/Core/Textures/things/building/misc/CommsConsole_south.png similarity index 100% rename from textures/things/building/misc/CommsConsole_south.png rename to Mods/Core/Textures/things/building/misc/CommsConsole_south.png diff --git a/textures/things/building/misc/DarkTorch.png b/Mods/Core/Textures/things/building/misc/DarkTorch.png similarity index 100% rename from textures/things/building/misc/DarkTorch.png rename to Mods/Core/Textures/things/building/misc/DarkTorch.png diff --git a/textures/things/building/misc/DarklightBrazier.png b/Mods/Core/Textures/things/building/misc/DarklightBrazier.png similarity index 100% rename from textures/things/building/misc/DarklightBrazier.png rename to Mods/Core/Textures/things/building/misc/DarklightBrazier.png diff --git a/textures/things/building/misc/DarklightBrazier_m.png b/Mods/Core/Textures/things/building/misc/DarklightBrazier_m.png similarity index 100% rename from textures/things/building/misc/DarklightBrazier_m.png rename to Mods/Core/Textures/things/building/misc/DarklightBrazier_m.png diff --git a/textures/things/building/misc/Defoliator.png b/Mods/Core/Textures/things/building/misc/Defoliator.png similarity index 100% rename from textures/things/building/misc/Defoliator.png rename to Mods/Core/Textures/things/building/misc/Defoliator.png diff --git a/textures/things/building/misc/EMIDynamo.png b/Mods/Core/Textures/things/building/misc/EMIDynamo.png similarity index 100% rename from textures/things/building/misc/EMIDynamo.png rename to Mods/Core/Textures/things/building/misc/EMIDynamo.png diff --git a/textures/things/building/misc/GeneProcessor.png b/Mods/Core/Textures/things/building/misc/GeneProcessor.png similarity index 100% rename from textures/things/building/misc/GeneProcessor.png rename to Mods/Core/Textures/things/building/misc/GeneProcessor.png diff --git a/textures/things/building/misc/GibbetCageBottom.png b/Mods/Core/Textures/things/building/misc/GibbetCageBottom.png similarity index 100% rename from textures/things/building/misc/GibbetCageBottom.png rename to Mods/Core/Textures/things/building/misc/GibbetCageBottom.png diff --git a/textures/things/building/misc/GibbetCageTop.png b/Mods/Core/Textures/things/building/misc/GibbetCageTop.png similarity index 100% rename from textures/things/building/misc/GibbetCageTop.png rename to Mods/Core/Textures/things/building/misc/GibbetCageTop.png diff --git a/textures/things/building/misc/MechanitorShip.png b/Mods/Core/Textures/things/building/misc/MechanitorShip.png similarity index 100% rename from textures/things/building/misc/MechanitorShip.png rename to Mods/Core/Textures/things/building/misc/MechanitorShip.png diff --git a/textures/things/building/misc/MechanitorShipCrashed.png b/Mods/Core/Textures/things/building/misc/MechanitorShipCrashed.png similarity index 100% rename from textures/things/building/misc/MechanitorShipCrashed.png rename to Mods/Core/Textures/things/building/misc/MechanitorShipCrashed.png diff --git a/textures/things/building/misc/MechbandAntenna_east.png b/Mods/Core/Textures/things/building/misc/MechbandAntenna_east.png similarity index 100% rename from textures/things/building/misc/MechbandAntenna_east.png rename to Mods/Core/Textures/things/building/misc/MechbandAntenna_east.png diff --git a/textures/things/building/misc/MechbandAntenna_north.png b/Mods/Core/Textures/things/building/misc/MechbandAntenna_north.png similarity index 100% rename from textures/things/building/misc/MechbandAntenna_north.png rename to Mods/Core/Textures/things/building/misc/MechbandAntenna_north.png diff --git a/textures/things/building/misc/MechbandAntenna_south.png b/Mods/Core/Textures/things/building/misc/MechbandAntenna_south.png similarity index 100% rename from textures/things/building/misc/MechbandAntenna_south.png rename to Mods/Core/Textures/things/building/misc/MechbandAntenna_south.png diff --git a/textures/things/building/misc/MechbandAntenna_west.png b/Mods/Core/Textures/things/building/misc/MechbandAntenna_west.png similarity index 100% rename from textures/things/building/misc/MechbandAntenna_west.png rename to Mods/Core/Textures/things/building/misc/MechbandAntenna_west.png diff --git a/textures/things/building/misc/MechbandDish.png b/Mods/Core/Textures/things/building/misc/MechbandDish.png similarity index 100% rename from textures/things/building/misc/MechbandDish.png rename to Mods/Core/Textures/things/building/misc/MechbandDish.png diff --git a/textures/things/building/misc/MechbandDish_east.png b/Mods/Core/Textures/things/building/misc/MechbandDish_east.png similarity index 100% rename from textures/things/building/misc/MechbandDish_east.png rename to Mods/Core/Textures/things/building/misc/MechbandDish_east.png diff --git a/textures/things/building/misc/MechbandDish_north.png b/Mods/Core/Textures/things/building/misc/MechbandDish_north.png similarity index 100% rename from textures/things/building/misc/MechbandDish_north.png rename to Mods/Core/Textures/things/building/misc/MechbandDish_north.png diff --git a/textures/things/building/misc/MechbandDish_south.png b/Mods/Core/Textures/things/building/misc/MechbandDish_south.png similarity index 100% rename from textures/things/building/misc/MechbandDish_south.png rename to Mods/Core/Textures/things/building/misc/MechbandDish_south.png diff --git a/textures/things/building/misc/MechbandDish_westt.png b/Mods/Core/Textures/things/building/misc/MechbandDish_westt.png similarity index 100% rename from textures/things/building/misc/MechbandDish_westt.png rename to Mods/Core/Textures/things/building/misc/MechbandDish_westt.png diff --git a/textures/things/building/misc/MenuIconWastepackAtomizer.png b/Mods/Core/Textures/things/building/misc/MenuIconWastepackAtomizer.png similarity index 100% rename from textures/things/building/misc/MenuIconWastepackAtomizer.png rename to Mods/Core/Textures/things/building/misc/MenuIconWastepackAtomizer.png diff --git a/textures/things/building/misc/MultiAnalyzer.png b/Mods/Core/Textures/things/building/misc/MultiAnalyzer.png similarity index 100% rename from textures/things/building/misc/MultiAnalyzer.png rename to Mods/Core/Textures/things/building/misc/MultiAnalyzer.png diff --git a/textures/things/building/misc/PassiveCooler.png b/Mods/Core/Textures/things/building/misc/PassiveCooler.png similarity index 100% rename from textures/things/building/misc/PassiveCooler.png rename to Mods/Core/Textures/things/building/misc/PassiveCooler.png diff --git a/textures/things/building/misc/PsychicDroner.png b/Mods/Core/Textures/things/building/misc/PsychicDroner.png similarity index 100% rename from textures/things/building/misc/PsychicDroner.png rename to Mods/Core/Textures/things/building/misc/PsychicDroner.png diff --git a/textures/things/building/misc/PsychicSuppressor.png b/Mods/Core/Textures/things/building/misc/PsychicSuppressor.png similarity index 100% rename from textures/things/building/misc/PsychicSuppressor.png rename to Mods/Core/Textures/things/building/misc/PsychicSuppressor.png diff --git a/textures/things/building/misc/Redtorch.png b/Mods/Core/Textures/things/building/misc/Redtorch.png similarity index 100% rename from textures/things/building/misc/Redtorch.png rename to Mods/Core/Textures/things/building/misc/Redtorch.png diff --git a/textures/things/building/misc/SmokeSpewer.png b/Mods/Core/Textures/things/building/misc/SmokeSpewer.png similarity index 100% rename from textures/things/building/misc/SmokeSpewer.png rename to Mods/Core/Textures/things/building/misc/SmokeSpewer.png diff --git a/textures/things/building/misc/Spacedrone.png b/Mods/Core/Textures/things/building/misc/Spacedrone.png similarity index 100% rename from textures/things/building/misc/Spacedrone.png rename to Mods/Core/Textures/things/building/misc/Spacedrone.png diff --git a/textures/things/building/misc/SunBlocker.png b/Mods/Core/Textures/things/building/misc/SunBlocker.png similarity index 100% rename from textures/things/building/misc/SunBlocker.png rename to Mods/Core/Textures/things/building/misc/SunBlocker.png diff --git a/textures/things/building/misc/ToxicSpewer.png b/Mods/Core/Textures/things/building/misc/ToxicSpewer.png similarity index 100% rename from textures/things/building/misc/ToxicSpewer.png rename to Mods/Core/Textures/things/building/misc/ToxicSpewer.png diff --git a/textures/things/building/misc/Urn.png b/Mods/Core/Textures/things/building/misc/Urn.png similarity index 100% rename from textures/things/building/misc/Urn.png rename to Mods/Core/Textures/things/building/misc/Urn.png diff --git a/textures/things/building/misc/WastepackAtomizerWindow_east.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_east.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizerWindow_east.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_east.png diff --git a/textures/things/building/misc/WastepackAtomizerWindow_north.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_north.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizerWindow_north.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_north.png diff --git a/textures/things/building/misc/WastepackAtomizerWindow_south.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_south.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizerWindow_south.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizerWindow_south.png diff --git a/textures/things/building/misc/WastepackAtomizer_BottomLayer_east.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_east.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_BottomLayer_east.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_east.png diff --git a/textures/things/building/misc/WastepackAtomizer_BottomLayer_north.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_north.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_BottomLayer_north.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_north.png diff --git a/textures/things/building/misc/WastepackAtomizer_BottomLayer_south.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_south.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_BottomLayer_south.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_BottomLayer_south.png diff --git a/textures/things/building/misc/WastepackAtomizer_east.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_east.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_east.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_east.png diff --git a/textures/things/building/misc/WastepackAtomizer_north.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_north.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_north.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_north.png diff --git a/textures/things/building/misc/WastepackAtomizer_south.png b/Mods/Core/Textures/things/building/misc/WastepackAtomizer_south.png similarity index 100% rename from textures/things/building/misc/WastepackAtomizer_south.png rename to Mods/Core/Textures/things/building/misc/WastepackAtomizer_south.png diff --git a/textures/things/building/misc/WeatherController.png b/Mods/Core/Textures/things/building/misc/WeatherController.png similarity index 100% rename from textures/things/building/misc/WeatherController.png rename to Mods/Core/Textures/things/building/misc/WeatherController.png diff --git a/textures/things/building/misc/ancientterminal/AncientTerminal_east.png b/Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_east.png similarity index 100% rename from textures/things/building/misc/ancientterminal/AncientTerminal_east.png rename to Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_east.png diff --git a/textures/things/building/misc/ancientterminal/AncientTerminal_north.png b/Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_north.png similarity index 100% rename from textures/things/building/misc/ancientterminal/AncientTerminal_north.png rename to Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_north.png diff --git a/textures/things/building/misc/ancientterminal/AncientTerminal_south.png b/Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_south.png similarity index 100% rename from textures/things/building/misc/ancientterminal/AncientTerminal_south.png rename to Mods/Core/Textures/things/building/misc/ancientterminal/AncientTerminal_south.png diff --git a/textures/things/building/misc/animalbed/AnimalBed.png b/Mods/Core/Textures/things/building/misc/animalbed/AnimalBed.png similarity index 100% rename from textures/things/building/misc/animalbed/AnimalBed.png rename to Mods/Core/Textures/things/building/misc/animalbed/AnimalBed.png diff --git a/textures/things/building/misc/animalbed/AnimalSleepBox.png b/Mods/Core/Textures/things/building/misc/animalbed/AnimalSleepBox.png similarity index 100% rename from textures/things/building/misc/animalbed/AnimalSleepBox.png rename to Mods/Core/Textures/things/building/misc/animalbed/AnimalSleepBox.png diff --git a/textures/things/building/misc/animalbed/animalsleepspot.png b/Mods/Core/Textures/things/building/misc/animalbed/animalsleepspot.png similarity index 100% rename from textures/things/building/misc/animalbed/animalsleepspot.png rename to Mods/Core/Textures/things/building/misc/animalbed/animalsleepspot.png diff --git a/textures/things/building/misc/autobong/Autobong.png b/Mods/Core/Textures/things/building/misc/autobong/Autobong.png similarity index 100% rename from textures/things/building/misc/autobong/Autobong.png rename to Mods/Core/Textures/things/building/misc/autobong/Autobong.png diff --git a/textures/things/building/misc/autobong/Autobong_m.png b/Mods/Core/Textures/things/building/misc/autobong/Autobong_m.png similarity index 100% rename from textures/things/building/misc/autobong/Autobong_m.png rename to Mods/Core/Textures/things/building/misc/autobong/Autobong_m.png diff --git a/textures/things/building/misc/biosculpterpod/BiosculpterPodMenuIcon.png b/Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPodMenuIcon.png similarity index 100% rename from textures/things/building/misc/biosculpterpod/BiosculpterPodMenuIcon.png rename to Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPodMenuIcon.png diff --git a/textures/things/building/misc/biosculpterpod/BiosculpterPod_east.png b/Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_east.png similarity index 100% rename from textures/things/building/misc/biosculpterpod/BiosculpterPod_east.png rename to Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_east.png diff --git a/textures/things/building/misc/biosculpterpod/BiosculpterPod_north.png b/Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_north.png similarity index 100% rename from textures/things/building/misc/biosculpterpod/BiosculpterPod_north.png rename to Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_north.png diff --git a/textures/things/building/misc/biosculpterpod/BiosculpterPod_south.png b/Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_south.png similarity index 100% rename from textures/things/building/misc/biosculpterpod/BiosculpterPod_south.png rename to Mods/Core/Textures/things/building/misc/biosculpterpod/BiosculpterPod_south.png diff --git a/textures/things/building/misc/bonsaitreepot/BonsaiTreePot.png b/Mods/Core/Textures/things/building/misc/bonsaitreepot/BonsaiTreePot.png similarity index 100% rename from textures/things/building/misc/bonsaitreepot/BonsaiTreePot.png rename to Mods/Core/Textures/things/building/misc/bonsaitreepot/BonsaiTreePot.png diff --git a/textures/things/building/misc/burnbong/BurnBong.png b/Mods/Core/Textures/things/building/misc/burnbong/BurnBong.png similarity index 100% rename from textures/things/building/misc/burnbong/BurnBong.png rename to Mods/Core/Textures/things/building/misc/burnbong/BurnBong.png diff --git a/textures/things/building/misc/campfire.png b/Mods/Core/Textures/things/building/misc/campfire.png similarity index 100% rename from textures/things/building/misc/campfire.png rename to Mods/Core/Textures/things/building/misc/campfire.png diff --git a/textures/things/building/misc/cannibalplatter/CannibalPlatter_east.png b/Mods/Core/Textures/things/building/misc/cannibalplatter/CannibalPlatter_east.png similarity index 100% rename from textures/things/building/misc/cannibalplatter/CannibalPlatter_east.png rename to Mods/Core/Textures/things/building/misc/cannibalplatter/CannibalPlatter_east.png diff --git a/textures/things/building/misc/cannibalplatter/CannibalPlatter_south.png b/Mods/Core/Textures/things/building/misc/cannibalplatter/CannibalPlatter_south.png similarity index 100% rename from textures/things/building/misc/cannibalplatter/CannibalPlatter_south.png rename to Mods/Core/Textures/things/building/misc/cannibalplatter/CannibalPlatter_south.png diff --git a/textures/things/building/misc/caravanpackingspot.png b/Mods/Core/Textures/things/building/misc/caravanpackingspot.png similarity index 100% rename from textures/things/building/misc/caravanpackingspot.png rename to Mods/Core/Textures/things/building/misc/caravanpackingspot.png diff --git a/textures/things/building/misc/commsconsole.png b/Mods/Core/Textures/things/building/misc/commsconsole.png similarity index 100% rename from textures/things/building/misc/commsconsole.png rename to Mods/Core/Textures/things/building/misc/commsconsole.png diff --git a/textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_east.png b/Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_east.png similarity index 100% rename from textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_east.png rename to Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_east.png diff --git a/textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_north.png b/Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_north.png similarity index 100% rename from textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_north.png rename to Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_north.png diff --git a/textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_south.png b/Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_south.png similarity index 100% rename from textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_south.png rename to Mods/Core/Textures/things/building/misc/deathrestaccelerator/DeathrestAccelerator_south.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_east.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_east.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_east.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_east.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_eastm.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_eastm.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_eastm.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_eastm.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_north.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_north.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_north.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_north.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_northm.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_northm.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_northm.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_northm.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_south.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_south.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_south.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_south.png diff --git a/textures/things/building/misc/deathrestcasket/DeathrestCasket_southm.png b/Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_southm.png similarity index 100% rename from textures/things/building/misc/deathrestcasket/DeathrestCasket_southm.png rename to Mods/Core/Textures/things/building/misc/deathrestcasket/DeathrestCasket_southm.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_east.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_east.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_east.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_east.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_eastm.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_eastm.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_eastm.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_eastm.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_north.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_north.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_north.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_north.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_northm.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_northm.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_northm.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_northm.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_south.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_south.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_south.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_south.png diff --git a/textures/things/building/misc/doubleslabbed/DoubleSlabBed_southm.png b/Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_southm.png similarity index 100% rename from textures/things/building/misc/doubleslabbed/DoubleSlabBed_southm.png rename to Mods/Core/Textures/things/building/misc/doubleslabbed/DoubleSlabBed_southm.png diff --git a/textures/things/building/misc/dropbeacon.png b/Mods/Core/Textures/things/building/misc/dropbeacon.png similarity index 100% rename from textures/things/building/misc/dropbeacon.png rename to Mods/Core/Textures/things/building/misc/dropbeacon.png diff --git a/textures/things/building/misc/drum/Drum.png b/Mods/Core/Textures/things/building/misc/drum/Drum.png similarity index 100% rename from textures/things/building/misc/drum/Drum.png rename to Mods/Core/Textures/things/building/misc/drum/Drum.png diff --git a/textures/things/building/misc/drum/Drum_m.png b/Mods/Core/Textures/things/building/misc/drum/Drum_m.png similarity index 100% rename from textures/things/building/misc/drum/Drum_m.png rename to Mods/Core/Textures/things/building/misc/drum/Drum_m.png diff --git a/textures/things/building/misc/dryadformingpod/DryadFormingPod.png b/Mods/Core/Textures/things/building/misc/dryadformingpod/DryadFormingPod.png similarity index 100% rename from textures/things/building/misc/dryadformingpod/DryadFormingPod.png rename to Mods/Core/Textures/things/building/misc/dryadformingpod/DryadFormingPod.png diff --git a/textures/things/building/misc/dryadsphere/DryadSphereBack.png b/Mods/Core/Textures/things/building/misc/dryadsphere/DryadSphereBack.png similarity index 100% rename from textures/things/building/misc/dryadsphere/DryadSphereBack.png rename to Mods/Core/Textures/things/building/misc/dryadsphere/DryadSphereBack.png diff --git a/textures/things/building/misc/dryadsphere/DryadSphereFront.png b/Mods/Core/Textures/things/building/misc/dryadsphere/DryadSphereFront.png similarity index 100% rename from textures/things/building/misc/dryadsphere/DryadSphereFront.png rename to Mods/Core/Textures/things/building/misc/dryadsphere/DryadSphereFront.png diff --git a/textures/things/building/misc/effigy/Effigy.png b/Mods/Core/Textures/things/building/misc/effigy/Effigy.png similarity index 100% rename from textures/things/building/misc/effigy/Effigy.png rename to Mods/Core/Textures/things/building/misc/effigy/Effigy.png diff --git a/textures/things/building/misc/firefoampopper.png b/Mods/Core/Textures/things/building/misc/firefoampopper.png similarity index 100% rename from textures/things/building/misc/firefoampopper.png rename to Mods/Core/Textures/things/building/misc/firefoampopper.png diff --git a/textures/things/building/misc/fungusdarktorch/FungusDarkTorch.png b/Mods/Core/Textures/things/building/misc/fungusdarktorch/FungusDarkTorch.png similarity index 100% rename from textures/things/building/misc/fungusdarktorch/FungusDarkTorch.png rename to Mods/Core/Textures/things/building/misc/fungusdarktorch/FungusDarkTorch.png diff --git a/textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA.png b/Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA.png similarity index 100% rename from textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA.png rename to Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA.png diff --git a/textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB.png b/Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB.png similarity index 100% rename from textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB.png rename to Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB.png diff --git a/textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC.png b/Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC.png similarity index 100% rename from textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC.png rename to Mods/Core/Textures/things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC.png diff --git a/textures/things/building/misc/geneassembler/GeneAssembler_east.png b/Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_east.png similarity index 100% rename from textures/things/building/misc/geneassembler/GeneAssembler_east.png rename to Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_east.png diff --git a/textures/things/building/misc/geneassembler/GeneAssembler_north.png b/Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_north.png similarity index 100% rename from textures/things/building/misc/geneassembler/GeneAssembler_north.png rename to Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_north.png diff --git a/textures/things/building/misc/geneassembler/GeneAssembler_south.png b/Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_south.png similarity index 100% rename from textures/things/building/misc/geneassembler/GeneAssembler_south.png rename to Mods/Core/Textures/things/building/misc/geneassembler/GeneAssembler_south.png diff --git a/textures/things/building/misc/genebank/Genebank_east.png b/Mods/Core/Textures/things/building/misc/genebank/Genebank_east.png similarity index 100% rename from textures/things/building/misc/genebank/Genebank_east.png rename to Mods/Core/Textures/things/building/misc/genebank/Genebank_east.png diff --git a/textures/things/building/misc/genebank/Genebank_north.png b/Mods/Core/Textures/things/building/misc/genebank/Genebank_north.png similarity index 100% rename from textures/things/building/misc/genebank/Genebank_north.png rename to Mods/Core/Textures/things/building/misc/genebank/Genebank_north.png diff --git a/textures/things/building/misc/genebank/Genebank_south.png b/Mods/Core/Textures/things/building/misc/genebank/Genebank_south.png similarity index 100% rename from textures/things/building/misc/genebank/Genebank_south.png rename to Mods/Core/Textures/things/building/misc/genebank/Genebank_south.png diff --git a/textures/things/building/misc/geneextractor/GeneExtractor_east.png b/Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_east.png similarity index 100% rename from textures/things/building/misc/geneextractor/GeneExtractor_east.png rename to Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_east.png diff --git a/textures/things/building/misc/geneextractor/GeneExtractor_north.png b/Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_north.png similarity index 100% rename from textures/things/building/misc/geneextractor/GeneExtractor_north.png rename to Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_north.png diff --git a/textures/things/building/misc/geneextractor/GeneExtractor_south.png b/Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_south.png similarity index 100% rename from textures/things/building/misc/geneextractor/GeneExtractor_south.png rename to Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_south.png diff --git a/textures/things/building/misc/geneextractor/GeneExtractor_west.png b/Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_west.png similarity index 100% rename from textures/things/building/misc/geneextractor/GeneExtractor_west.png rename to Mods/Core/Textures/things/building/misc/geneextractor/GeneExtractor_west.png diff --git a/textures/things/building/misc/glucosoidpump/GlucosoidPump_east.png b/Mods/Core/Textures/things/building/misc/glucosoidpump/GlucosoidPump_east.png similarity index 100% rename from textures/things/building/misc/glucosoidpump/GlucosoidPump_east.png rename to Mods/Core/Textures/things/building/misc/glucosoidpump/GlucosoidPump_east.png diff --git a/textures/things/building/misc/glucosoidpump/GlucosoidPump_south.png b/Mods/Core/Textures/things/building/misc/glucosoidpump/GlucosoidPump_south.png similarity index 100% rename from textures/things/building/misc/glucosoidpump/GlucosoidPump_south.png rename to Mods/Core/Textures/things/building/misc/glucosoidpump/GlucosoidPump_south.png diff --git a/textures/things/building/misc/graveempty_back.png b/Mods/Core/Textures/things/building/misc/graveempty_back.png similarity index 100% rename from textures/things/building/misc/graveempty_back.png rename to Mods/Core/Textures/things/building/misc/graveempty_back.png diff --git a/textures/things/building/misc/graveempty_front.png b/Mods/Core/Textures/things/building/misc/graveempty_front.png similarity index 100% rename from textures/things/building/misc/graveempty_front.png rename to Mods/Core/Textures/things/building/misc/graveempty_front.png diff --git a/textures/things/building/misc/graveempty_side.png b/Mods/Core/Textures/things/building/misc/graveempty_side.png similarity index 100% rename from textures/things/building/misc/graveempty_side.png rename to Mods/Core/Textures/things/building/misc/graveempty_side.png diff --git a/textures/things/building/misc/gravefull_back.png b/Mods/Core/Textures/things/building/misc/gravefull_back.png similarity index 100% rename from textures/things/building/misc/gravefull_back.png rename to Mods/Core/Textures/things/building/misc/gravefull_back.png diff --git a/textures/things/building/misc/gravefull_front.png b/Mods/Core/Textures/things/building/misc/gravefull_front.png similarity index 100% rename from textures/things/building/misc/gravefull_front.png rename to Mods/Core/Textures/things/building/misc/gravefull_front.png diff --git a/textures/things/building/misc/gravefull_side.png b/Mods/Core/Textures/things/building/misc/gravefull_side.png similarity index 100% rename from textures/things/building/misc/gravefull_side.png rename to Mods/Core/Textures/things/building/misc/gravefull_side.png diff --git a/textures/things/building/misc/groundpenetratingscanner.png b/Mods/Core/Textures/things/building/misc/groundpenetratingscanner.png similarity index 100% rename from textures/things/building/misc/groundpenetratingscanner.png rename to Mods/Core/Textures/things/building/misc/groundpenetratingscanner.png diff --git a/textures/things/building/misc/growthvat/GrowthVatTop_east.png b/Mods/Core/Textures/things/building/misc/growthvat/GrowthVatTop_east.png similarity index 100% rename from textures/things/building/misc/growthvat/GrowthVatTop_east.png rename to Mods/Core/Textures/things/building/misc/growthvat/GrowthVatTop_east.png diff --git a/textures/things/building/misc/growthvat/GrowthVatTop_south.png b/Mods/Core/Textures/things/building/misc/growthvat/GrowthVatTop_south.png similarity index 100% rename from textures/things/building/misc/growthvat/GrowthVatTop_south.png rename to Mods/Core/Textures/things/building/misc/growthvat/GrowthVatTop_south.png diff --git a/textures/things/building/misc/growthvat/GrowthVat_east.png b/Mods/Core/Textures/things/building/misc/growthvat/GrowthVat_east.png similarity index 100% rename from textures/things/building/misc/growthvat/GrowthVat_east.png rename to Mods/Core/Textures/things/building/misc/growthvat/GrowthVat_east.png diff --git a/textures/things/building/misc/growthvat/GrowthVat_south.png b/Mods/Core/Textures/things/building/misc/growthvat/GrowthVat_south.png similarity index 100% rename from textures/things/building/misc/growthvat/GrowthVat_south.png rename to Mods/Core/Textures/things/building/misc/growthvat/GrowthVat_south.png diff --git a/textures/things/building/misc/hemogenamplifier/HemogenAmplifier_east.png b/Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_east.png similarity index 100% rename from textures/things/building/misc/hemogenamplifier/HemogenAmplifier_east.png rename to Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_east.png diff --git a/textures/things/building/misc/hemogenamplifier/HemogenAmplifier_north.png b/Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_north.png similarity index 100% rename from textures/things/building/misc/hemogenamplifier/HemogenAmplifier_north.png rename to Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_north.png diff --git a/textures/things/building/misc/hemogenamplifier/HemogenAmplifier_south.png b/Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_south.png similarity index 100% rename from textures/things/building/misc/hemogenamplifier/HemogenAmplifier_south.png rename to Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_south.png diff --git a/textures/things/building/misc/hemogenamplifier/HemogenAmplifier_west.png b/Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_west.png similarity index 100% rename from textures/things/building/misc/hemogenamplifier/HemogenAmplifier_west.png rename to Mods/Core/Textures/things/building/misc/hemogenamplifier/HemogenAmplifier_west.png diff --git a/textures/things/building/misc/hemopump/Hemopump_east.png b/Mods/Core/Textures/things/building/misc/hemopump/Hemopump_east.png similarity index 100% rename from textures/things/building/misc/hemopump/Hemopump_east.png rename to Mods/Core/Textures/things/building/misc/hemopump/Hemopump_east.png diff --git a/textures/things/building/misc/hemopump/Hemopump_south.png b/Mods/Core/Textures/things/building/misc/hemopump/Hemopump_south.png similarity index 100% rename from textures/things/building/misc/hemopump/Hemopump_south.png rename to Mods/Core/Textures/things/building/misc/hemopump/Hemopump_south.png diff --git a/textures/things/building/misc/incenseshrine/IncenseShrine.png b/Mods/Core/Textures/things/building/misc/incenseshrine/IncenseShrine.png similarity index 100% rename from textures/things/building/misc/incenseshrine/IncenseShrine.png rename to Mods/Core/Textures/things/building/misc/incenseshrine/IncenseShrine.png diff --git a/textures/things/building/misc/kneelpillow/KneelPillow_east.png b/Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_east.png similarity index 100% rename from textures/things/building/misc/kneelpillow/KneelPillow_east.png rename to Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_east.png diff --git a/textures/things/building/misc/kneelpillow/KneelPillow_north.png b/Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_north.png similarity index 100% rename from textures/things/building/misc/kneelpillow/KneelPillow_north.png rename to Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_north.png diff --git a/textures/things/building/misc/kneelpillow/KneelPillow_south.png b/Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_south.png similarity index 100% rename from textures/things/building/misc/kneelpillow/KneelPillow_south.png rename to Mods/Core/Textures/things/building/misc/kneelpillow/KneelPillow_south.png diff --git a/textures/things/building/misc/kneelsheet/KneelSheet_east.png b/Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_east.png similarity index 100% rename from textures/things/building/misc/kneelsheet/KneelSheet_east.png rename to Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_east.png diff --git a/textures/things/building/misc/kneelsheet/KneelSheet_north.png b/Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_north.png similarity index 100% rename from textures/things/building/misc/kneelsheet/KneelSheet_north.png rename to Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_north.png diff --git a/textures/things/building/misc/kneelsheet/KneelSheet_south.png b/Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_south.png similarity index 100% rename from textures/things/building/misc/kneelsheet/KneelSheet_south.png rename to Mods/Core/Textures/things/building/misc/kneelsheet/KneelSheet_south.png diff --git a/textures/things/building/misc/lectern/Lectern_east.png b/Mods/Core/Textures/things/building/misc/lectern/Lectern_east.png similarity index 100% rename from textures/things/building/misc/lectern/Lectern_east.png rename to Mods/Core/Textures/things/building/misc/lectern/Lectern_east.png diff --git a/textures/things/building/misc/lectern/Lectern_north.png b/Mods/Core/Textures/things/building/misc/lectern/Lectern_north.png similarity index 100% rename from textures/things/building/misc/lectern/Lectern_north.png rename to Mods/Core/Textures/things/building/misc/lectern/Lectern_north.png diff --git a/textures/things/building/misc/lectern/Lectern_south.png b/Mods/Core/Textures/things/building/misc/lectern/Lectern_south.png similarity index 100% rename from textures/things/building/misc/lectern/Lectern_south.png rename to Mods/Core/Textures/things/building/misc/lectern/Lectern_south.png diff --git a/textures/things/building/misc/longrangemineralscanner.png b/Mods/Core/Textures/things/building/misc/longrangemineralscanner.png similarity index 100% rename from textures/things/building/misc/longrangemineralscanner.png rename to Mods/Core/Textures/things/building/misc/longrangemineralscanner.png diff --git a/textures/things/building/misc/marriagespot.png b/Mods/Core/Textures/things/building/misc/marriagespot.png similarity index 100% rename from textures/things/building/misc/marriagespot.png rename to Mods/Core/Textures/things/building/misc/marriagespot.png diff --git a/textures/things/building/misc/moisturepump.png b/Mods/Core/Textures/things/building/misc/moisturepump.png similarity index 100% rename from textures/things/building/misc/moisturepump.png rename to Mods/Core/Textures/things/building/misc/moisturepump.png diff --git a/textures/things/building/misc/natureshrine_large/LargeNatureShrineStoneA.png b/Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineStoneA.png similarity index 100% rename from textures/things/building/misc/natureshrine_large/LargeNatureShrineStoneA.png rename to Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineStoneA.png diff --git a/textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodA.png b/Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodA.png similarity index 100% rename from textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodA.png rename to Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodA.png diff --git a/textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodB.png b/Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodB.png similarity index 100% rename from textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodB.png rename to Mods/Core/Textures/things/building/misc/natureshrine_large/LargeNatureShrineWoodB.png diff --git a/textures/things/building/misc/natureshrine_small/SmallNatureShrineStoneA.png b/Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineStoneA.png similarity index 100% rename from textures/things/building/misc/natureshrine_small/SmallNatureShrineStoneA.png rename to Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineStoneA.png diff --git a/textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodA.png b/Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodA.png similarity index 100% rename from textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodA.png rename to Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodA.png diff --git a/textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodB.png b/Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodB.png similarity index 100% rename from textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodB.png rename to Mods/Core/Textures/things/building/misc/natureshrine_small/SmallNatureShrineWoodB.png diff --git a/textures/things/building/misc/neuralsupercharger/NeuralSupercharger_east.png b/Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_east.png similarity index 100% rename from textures/things/building/misc/neuralsupercharger/NeuralSupercharger_east.png rename to Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_east.png diff --git a/textures/things/building/misc/neuralsupercharger/NeuralSupercharger_north.png b/Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_north.png similarity index 100% rename from textures/things/building/misc/neuralsupercharger/NeuralSupercharger_north.png rename to Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_north.png diff --git a/textures/things/building/misc/neuralsupercharger/NeuralSupercharger_south.png b/Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_south.png similarity index 100% rename from textures/things/building/misc/neuralsupercharger/NeuralSupercharger_south.png rename to Mods/Core/Textures/things/building/misc/neuralsupercharger/NeuralSupercharger_south.png diff --git a/textures/things/building/misc/partyspot.png b/Mods/Core/Textures/things/building/misc/partyspot.png similarity index 100% rename from textures/things/building/misc/partyspot.png rename to Mods/Core/Textures/things/building/misc/partyspot.png diff --git a/textures/things/building/misc/pew/Pew_east.png b/Mods/Core/Textures/things/building/misc/pew/Pew_east.png similarity index 100% rename from textures/things/building/misc/pew/Pew_east.png rename to Mods/Core/Textures/things/building/misc/pew/Pew_east.png diff --git a/textures/things/building/misc/pew/Pew_north.png b/Mods/Core/Textures/things/building/misc/pew/Pew_north.png similarity index 100% rename from textures/things/building/misc/pew/Pew_north.png rename to Mods/Core/Textures/things/building/misc/pew/Pew_north.png diff --git a/textures/things/building/misc/pew/Pew_south.png b/Mods/Core/Textures/things/building/misc/pew/Pew_south.png similarity index 100% rename from textures/things/building/misc/pew/Pew_south.png rename to Mods/Core/Textures/things/building/misc/pew/Pew_south.png diff --git a/textures/things/building/misc/podlauncher.png b/Mods/Core/Textures/things/building/misc/podlauncher.png similarity index 100% rename from textures/things/building/misc/podlauncher.png rename to Mods/Core/Textures/things/building/misc/podlauncher.png diff --git a/textures/things/building/misc/psychofluidpump/PsychofluidPump_east.png b/Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_east.png similarity index 100% rename from textures/things/building/misc/psychofluidpump/PsychofluidPump_east.png rename to Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_east.png diff --git a/textures/things/building/misc/psychofluidpump/PsychofluidPump_north.png b/Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_north.png similarity index 100% rename from textures/things/building/misc/psychofluidpump/PsychofluidPump_north.png rename to Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_north.png diff --git a/textures/things/building/misc/psychofluidpump/PsychofluidPump_south.png b/Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_south.png similarity index 100% rename from textures/things/building/misc/psychofluidpump/PsychofluidPump_south.png rename to Mods/Core/Textures/things/building/misc/psychofluidpump/PsychofluidPump_south.png diff --git a/textures/things/building/misc/pyre/Pyre.png b/Mods/Core/Textures/things/building/misc/pyre/Pyre.png similarity index 100% rename from textures/things/building/misc/pyre/Pyre.png rename to Mods/Core/Textures/things/building/misc/pyre/Pyre.png diff --git a/textures/things/building/misc/reliquary/Reliquary_east.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_east.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_east.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_east.png diff --git a/textures/things/building/misc/reliquary/Reliquary_eastm.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_eastm.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_eastm.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_eastm.png diff --git a/textures/things/building/misc/reliquary/Reliquary_north.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_north.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_north.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_north.png diff --git a/textures/things/building/misc/reliquary/Reliquary_northm.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_northm.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_northm.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_northm.png diff --git a/textures/things/building/misc/reliquary/Reliquary_south.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_south.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_south.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_south.png diff --git a/textures/things/building/misc/reliquary/Reliquary_southm.png b/Mods/Core/Textures/things/building/misc/reliquary/Reliquary_southm.png similarity index 100% rename from textures/things/building/misc/reliquary/Reliquary_southm.png rename to Mods/Core/Textures/things/building/misc/reliquary/Reliquary_southm.png diff --git a/textures/things/building/misc/sacrificialflag/SacrificialFlag.png b/Mods/Core/Textures/things/building/misc/sacrificialflag/SacrificialFlag.png similarity index 100% rename from textures/things/building/misc/sacrificialflag/SacrificialFlag.png rename to Mods/Core/Textures/things/building/misc/sacrificialflag/SacrificialFlag.png diff --git a/textures/things/building/misc/sarcophagus_back.png b/Mods/Core/Textures/things/building/misc/sarcophagus_back.png similarity index 100% rename from textures/things/building/misc/sarcophagus_back.png rename to Mods/Core/Textures/things/building/misc/sarcophagus_back.png diff --git a/textures/things/building/misc/sarcophagus_side.png b/Mods/Core/Textures/things/building/misc/sarcophagus_side.png similarity index 100% rename from textures/things/building/misc/sarcophagus_side.png rename to Mods/Core/Textures/things/building/misc/sarcophagus_side.png diff --git a/textures/things/building/misc/sarcophagusfull_back.png b/Mods/Core/Textures/things/building/misc/sarcophagusfull_back.png similarity index 100% rename from textures/things/building/misc/sarcophagusfull_back.png rename to Mods/Core/Textures/things/building/misc/sarcophagusfull_back.png diff --git a/textures/things/building/misc/sarcophagusfull_side.png b/Mods/Core/Textures/things/building/misc/sarcophagusfull_side.png similarity index 100% rename from textures/things/building/misc/sarcophagusfull_side.png rename to Mods/Core/Textures/things/building/misc/sarcophagusfull_side.png diff --git a/textures/things/building/misc/skullspike/Skullspike.png b/Mods/Core/Textures/things/building/misc/skullspike/Skullspike.png similarity index 100% rename from textures/things/building/misc/skullspike/Skullspike.png rename to Mods/Core/Textures/things/building/misc/skullspike/Skullspike.png diff --git a/textures/things/building/misc/skullspike/Skullspike_m.png b/Mods/Core/Textures/things/building/misc/skullspike/Skullspike_m.png similarity index 100% rename from textures/things/building/misc/skullspike/Skullspike_m.png rename to Mods/Core/Textures/things/building/misc/skullspike/Skullspike_m.png diff --git a/textures/things/building/misc/slabbed/SlabBed_east.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_east.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_east.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_east.png diff --git a/textures/things/building/misc/slabbed/SlabBed_eastm.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_eastm.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_eastm.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_eastm.png diff --git a/textures/things/building/misc/slabbed/SlabBed_north.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_north.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_north.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_north.png diff --git a/textures/things/building/misc/slabbed/SlabBed_northm.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_northm.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_northm.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_northm.png diff --git a/textures/things/building/misc/slabbed/SlabBed_south.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_south.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_south.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_south.png diff --git a/textures/things/building/misc/slabbed/SlabBed_southm.png b/Mods/Core/Textures/things/building/misc/slabbed/SlabBed_southm.png similarity index 100% rename from textures/things/building/misc/slabbed/SlabBed_southm.png rename to Mods/Core/Textures/things/building/misc/slabbed/SlabBed_southm.png diff --git a/textures/things/building/misc/sleepaccelerator/SleepAccelerator_east.png b/Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_east.png similarity index 100% rename from textures/things/building/misc/sleepaccelerator/SleepAccelerator_east.png rename to Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_east.png diff --git a/textures/things/building/misc/sleepaccelerator/SleepAccelerator_north.png b/Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_north.png similarity index 100% rename from textures/things/building/misc/sleepaccelerator/SleepAccelerator_north.png rename to Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_north.png diff --git a/textures/things/building/misc/sleepaccelerator/SleepAccelerator_south.png b/Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_south.png similarity index 100% rename from textures/things/building/misc/sleepaccelerator/SleepAccelerator_south.png rename to Mods/Core/Textures/things/building/misc/sleepaccelerator/SleepAccelerator_south.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_east.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_east.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_east.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_east.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_eastm.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_eastm.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_eastm.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_eastm.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_north.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_north.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_north.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_north.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_northm.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_northm.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_northm.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_northm.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_south.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_south.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_south.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_south.png diff --git a/textures/things/building/misc/stylingstation/TableStyling_southm.png b/Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_southm.png similarity index 100% rename from textures/things/building/misc/stylingstation/TableStyling_southm.png rename to Mods/Core/Textures/things/building/misc/stylingstation/TableStyling_southm.png diff --git a/textures/things/building/misc/tempcontrol/cooler_back.png b/Mods/Core/Textures/things/building/misc/tempcontrol/cooler_back.png similarity index 100% rename from textures/things/building/misc/tempcontrol/cooler_back.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/cooler_back.png diff --git a/textures/things/building/misc/tempcontrol/cooler_front.png b/Mods/Core/Textures/things/building/misc/tempcontrol/cooler_front.png similarity index 100% rename from textures/things/building/misc/tempcontrol/cooler_front.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/cooler_front.png diff --git a/textures/things/building/misc/tempcontrol/cooler_side.png b/Mods/Core/Textures/things/building/misc/tempcontrol/cooler_side.png similarity index 100% rename from textures/things/building/misc/tempcontrol/cooler_side.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/cooler_side.png diff --git a/textures/things/building/misc/tempcontrol/heater.png b/Mods/Core/Textures/things/building/misc/tempcontrol/heater.png similarity index 100% rename from textures/things/building/misc/tempcontrol/heater.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/heater.png diff --git a/textures/things/building/misc/tempcontrol/vent_back.png b/Mods/Core/Textures/things/building/misc/tempcontrol/vent_back.png similarity index 100% rename from textures/things/building/misc/tempcontrol/vent_back.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/vent_back.png diff --git a/textures/things/building/misc/tempcontrol/vent_off_back.png b/Mods/Core/Textures/things/building/misc/tempcontrol/vent_off_back.png similarity index 100% rename from textures/things/building/misc/tempcontrol/vent_off_back.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/vent_off_back.png diff --git a/textures/things/building/misc/tempcontrol/vent_off_side.png b/Mods/Core/Textures/things/building/misc/tempcontrol/vent_off_side.png similarity index 100% rename from textures/things/building/misc/tempcontrol/vent_off_side.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/vent_off_side.png diff --git a/textures/things/building/misc/tempcontrol/vent_side.png b/Mods/Core/Textures/things/building/misc/tempcontrol/vent_side.png similarity index 100% rename from textures/things/building/misc/tempcontrol/vent_side.png rename to Mods/Core/Textures/things/building/misc/tempcontrol/vent_side.png diff --git a/textures/things/building/misc/toolcabinet_back.png b/Mods/Core/Textures/things/building/misc/toolcabinet_back.png similarity index 100% rename from textures/things/building/misc/toolcabinet_back.png rename to Mods/Core/Textures/things/building/misc/toolcabinet_back.png diff --git a/textures/things/building/misc/toolcabinet_side.png b/Mods/Core/Textures/things/building/misc/toolcabinet_side.png similarity index 100% rename from textures/things/building/misc/toolcabinet_side.png rename to Mods/Core/Textures/things/building/misc/toolcabinet_side.png diff --git a/textures/things/building/misc/torchlamp.png b/Mods/Core/Textures/things/building/misc/torchlamp.png similarity index 100% rename from textures/things/building/misc/torchlamp.png rename to Mods/Core/Textures/things/building/misc/torchlamp.png diff --git a/textures/things/building/misc/vitalsmonitor_back.png b/Mods/Core/Textures/things/building/misc/vitalsmonitor_back.png similarity index 100% rename from textures/things/building/misc/vitalsmonitor_back.png rename to Mods/Core/Textures/things/building/misc/vitalsmonitor_back.png diff --git a/textures/things/building/misc/vitalsmonitor_front.png b/Mods/Core/Textures/things/building/misc/vitalsmonitor_front.png similarity index 100% rename from textures/things/building/misc/vitalsmonitor_front.png rename to Mods/Core/Textures/things/building/misc/vitalsmonitor_front.png diff --git a/textures/things/building/misc/vitalsmonitor_side.png b/Mods/Core/Textures/things/building/misc/vitalsmonitor_side.png similarity index 100% rename from textures/things/building/misc/vitalsmonitor_side.png rename to Mods/Core/Textures/things/building/misc/vitalsmonitor_side.png diff --git a/textures/things/building/natural/GlowPod.png b/Mods/Core/Textures/things/building/natural/GlowPod.png similarity index 100% rename from textures/things/building/natural/GlowPod.png rename to Mods/Core/Textures/things/building/natural/GlowPod.png diff --git a/textures/things/building/natural/Hive.png b/Mods/Core/Textures/things/building/natural/Hive.png similarity index 100% rename from textures/things/building/natural/Hive.png rename to Mods/Core/Textures/things/building/natural/Hive.png diff --git a/textures/things/building/natural/cocoonmegascarab/CocoonMegascarabA.png b/Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabA.png similarity index 100% rename from textures/things/building/natural/cocoonmegascarab/CocoonMegascarabA.png rename to Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabA.png diff --git a/textures/things/building/natural/cocoonmegascarab/CocoonMegascarabB.png b/Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabB.png similarity index 100% rename from textures/things/building/natural/cocoonmegascarab/CocoonMegascarabB.png rename to Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabB.png diff --git a/textures/things/building/natural/cocoonmegascarab/CocoonMegascarabC.png b/Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabC.png similarity index 100% rename from textures/things/building/natural/cocoonmegascarab/CocoonMegascarabC.png rename to Mods/Core/Textures/things/building/natural/cocoonmegascarab/CocoonMegascarabC.png diff --git a/textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderA.png b/Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderA.png similarity index 100% rename from textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderA.png rename to Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderA.png diff --git a/textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderB.png b/Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderB.png similarity index 100% rename from textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderB.png rename to Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderB.png diff --git a/textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderC.png b/Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderC.png similarity index 100% rename from textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderC.png rename to Mods/Core/Textures/things/building/natural/cocoonmegaspider/CocoonMegaspiderC.png diff --git a/textures/things/building/natural/cocoonspelopede/CocoonSpelopedeA.png b/Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeA.png similarity index 100% rename from textures/things/building/natural/cocoonspelopede/CocoonSpelopedeA.png rename to Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeA.png diff --git a/textures/things/building/natural/cocoonspelopede/CocoonSpelopedeB.png b/Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeB.png similarity index 100% rename from textures/things/building/natural/cocoonspelopede/CocoonSpelopedeB.png rename to Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeB.png diff --git a/textures/things/building/natural/cocoonspelopede/CocoonSpelopedeC.png b/Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeC.png similarity index 100% rename from textures/things/building/natural/cocoonspelopede/CocoonSpelopedeC.png rename to Mods/Core/Textures/things/building/natural/cocoonspelopede/CocoonSpelopedeC.png diff --git a/textures/things/building/natural/collapsedrocks.png b/Mods/Core/Textures/things/building/natural/collapsedrocks.png similarity index 100% rename from textures/things/building/natural/collapsedrocks.png rename to Mods/Core/Textures/things/building/natural/collapsedrocks.png diff --git a/textures/things/building/natural/steamgeyser.png b/Mods/Core/Textures/things/building/natural/steamgeyser.png similarity index 100% rename from textures/things/building/natural/steamgeyser.png rename to Mods/Core/Textures/things/building/natural/steamgeyser.png diff --git a/textures/things/building/power/ChemfuelPoweredGenerator.png b/Mods/Core/Textures/things/building/power/ChemfuelPoweredGenerator.png similarity index 100% rename from textures/things/building/power/ChemfuelPoweredGenerator.png rename to Mods/Core/Textures/things/building/power/ChemfuelPoweredGenerator.png diff --git a/textures/things/building/power/GeothermalPlant.png b/Mods/Core/Textures/things/building/power/GeothermalPlant.png similarity index 100% rename from textures/things/building/power/GeothermalPlant.png rename to Mods/Core/Textures/things/building/power/GeothermalPlant.png diff --git a/textures/things/building/power/MechBooster.png b/Mods/Core/Textures/things/building/power/MechBooster.png similarity index 100% rename from textures/things/building/power/MechBooster.png rename to Mods/Core/Textures/things/building/power/MechBooster.png diff --git a/textures/things/building/power/SolarCollector.png b/Mods/Core/Textures/things/building/power/SolarCollector.png similarity index 100% rename from textures/things/building/power/SolarCollector.png rename to Mods/Core/Textures/things/building/power/SolarCollector.png diff --git a/textures/things/building/power/ToxifierGenerator.png b/Mods/Core/Textures/things/building/power/ToxifierGenerator.png similarity index 100% rename from textures/things/building/power/ToxifierGenerator.png rename to Mods/Core/Textures/things/building/power/ToxifierGenerator.png diff --git a/textures/things/building/power/WoodFiredGenerator.png b/Mods/Core/Textures/things/building/power/WoodFiredGenerator.png similarity index 100% rename from textures/things/building/power/WoodFiredGenerator.png rename to Mods/Core/Textures/things/building/power/WoodFiredGenerator.png diff --git a/textures/things/building/power/battery_back.png b/Mods/Core/Textures/things/building/power/battery_back.png similarity index 100% rename from textures/things/building/power/battery_back.png rename to Mods/Core/Textures/things/building/power/battery_back.png diff --git a/textures/things/building/power/battery_side.png b/Mods/Core/Textures/things/building/power/battery_side.png similarity index 100% rename from textures/things/building/power/battery_side.png rename to Mods/Core/Textures/things/building/power/battery_side.png diff --git a/textures/things/building/power/fueledgenerator.png b/Mods/Core/Textures/things/building/power/fueledgenerator.png similarity index 100% rename from textures/things/building/power/fueledgenerator.png rename to Mods/Core/Textures/things/building/power/fueledgenerator.png diff --git a/textures/things/building/power/powerswitch.png b/Mods/Core/Textures/things/building/power/powerswitch.png similarity index 100% rename from textures/things/building/power/powerswitch.png rename to Mods/Core/Textures/things/building/power/powerswitch.png diff --git a/textures/things/building/power/powerswitch_off.png b/Mods/Core/Textures/things/building/power/powerswitch_off.png similarity index 100% rename from textures/things/building/power/powerswitch_off.png rename to Mods/Core/Textures/things/building/power/powerswitch_off.png diff --git a/textures/things/building/power/watermillgenerator/WatermillGeneratorBlades.png b/Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBlades.png similarity index 100% rename from textures/things/building/power/watermillgenerator/WatermillGeneratorBlades.png rename to Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBlades.png diff --git a/textures/things/building/power/watermillgenerator/WatermillGeneratorBody_east.png b/Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_east.png similarity index 100% rename from textures/things/building/power/watermillgenerator/WatermillGeneratorBody_east.png rename to Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_east.png diff --git a/textures/things/building/power/watermillgenerator/WatermillGeneratorBody_north.png b/Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_north.png similarity index 100% rename from textures/things/building/power/watermillgenerator/WatermillGeneratorBody_north.png rename to Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_north.png diff --git a/textures/things/building/power/watermillgenerator/WatermillGeneratorBody_south.png b/Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_south.png similarity index 100% rename from textures/things/building/power/watermillgenerator/WatermillGeneratorBody_south.png rename to Mods/Core/Textures/things/building/power/watermillgenerator/WatermillGeneratorBody_south.png diff --git a/textures/things/building/power/windturbine/WindTurbineBlades.png b/Mods/Core/Textures/things/building/power/windturbine/WindTurbineBlades.png similarity index 100% rename from textures/things/building/power/windturbine/WindTurbineBlades.png rename to Mods/Core/Textures/things/building/power/windturbine/WindTurbineBlades.png diff --git a/textures/things/building/power/windturbine/WindTurbineBody_east.png b/Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_east.png similarity index 100% rename from textures/things/building/power/windturbine/WindTurbineBody_east.png rename to Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_east.png diff --git a/textures/things/building/power/windturbine/WindTurbineBody_north.png b/Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_north.png similarity index 100% rename from textures/things/building/power/windturbine/WindTurbineBody_north.png rename to Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_north.png diff --git a/textures/things/building/power/windturbine/WindTurbineBody_south.png b/Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_south.png similarity index 100% rename from textures/things/building/power/windturbine/WindTurbineBody_south.png rename to Mods/Core/Textures/things/building/power/windturbine/WindTurbineBody_south.png diff --git a/textures/things/building/power/windturbine/WindTurbine_MenuIcon.png b/Mods/Core/Textures/things/building/power/windturbine/WindTurbine_MenuIcon.png similarity index 100% rename from textures/things/building/power/windturbine/WindTurbine_MenuIcon.png rename to Mods/Core/Textures/things/building/power/windturbine/WindTurbine_MenuIcon.png diff --git a/textures/things/building/power/windturbine/windturbinebody.png b/Mods/Core/Textures/things/building/power/windturbine/windturbinebody.png similarity index 100% rename from textures/things/building/power/windturbine/windturbinebody.png rename to Mods/Core/Textures/things/building/power/windturbine/windturbinebody.png diff --git a/textures/things/building/production/BasicRecharger_east.png b/Mods/Core/Textures/things/building/production/BasicRecharger_east.png similarity index 100% rename from textures/things/building/production/BasicRecharger_east.png rename to Mods/Core/Textures/things/building/production/BasicRecharger_east.png diff --git a/textures/things/building/production/BasicRecharger_north.png b/Mods/Core/Textures/things/building/production/BasicRecharger_north.png similarity index 100% rename from textures/things/building/production/BasicRecharger_north.png rename to Mods/Core/Textures/things/building/production/BasicRecharger_north.png diff --git a/textures/things/building/production/BasicRecharger_south.png b/Mods/Core/Textures/things/building/production/BasicRecharger_south.png similarity index 100% rename from textures/things/building/production/BasicRecharger_south.png rename to Mods/Core/Textures/things/building/production/BasicRecharger_south.png diff --git a/textures/things/building/production/Crematorium_east.png b/Mods/Core/Textures/things/building/production/Crematorium_east.png similarity index 100% rename from textures/things/building/production/Crematorium_east.png rename to Mods/Core/Textures/things/building/production/Crematorium_east.png diff --git a/textures/things/building/production/Crematorium_eastm.png b/Mods/Core/Textures/things/building/production/Crematorium_eastm.png similarity index 100% rename from textures/things/building/production/Crematorium_eastm.png rename to Mods/Core/Textures/things/building/production/Crematorium_eastm.png diff --git a/textures/things/building/production/Crematorium_north.png b/Mods/Core/Textures/things/building/production/Crematorium_north.png similarity index 100% rename from textures/things/building/production/Crematorium_north.png rename to Mods/Core/Textures/things/building/production/Crematorium_north.png diff --git a/textures/things/building/production/Crematorium_northm.png b/Mods/Core/Textures/things/building/production/Crematorium_northm.png similarity index 100% rename from textures/things/building/production/Crematorium_northm.png rename to Mods/Core/Textures/things/building/production/Crematorium_northm.png diff --git a/textures/things/building/production/Crematorium_south.png b/Mods/Core/Textures/things/building/production/Crematorium_south.png similarity index 100% rename from textures/things/building/production/Crematorium_south.png rename to Mods/Core/Textures/things/building/production/Crematorium_south.png diff --git a/textures/things/building/production/Crematorium_southm.png b/Mods/Core/Textures/things/building/production/Crematorium_southm.png similarity index 100% rename from textures/things/building/production/Crematorium_southm.png rename to Mods/Core/Textures/things/building/production/Crematorium_southm.png diff --git a/textures/things/building/production/DeepDrill.png b/Mods/Core/Textures/things/building/production/DeepDrill.png similarity index 100% rename from textures/things/building/production/DeepDrill.png rename to Mods/Core/Textures/things/building/production/DeepDrill.png diff --git a/textures/things/building/production/FermentingBarrel_east.png b/Mods/Core/Textures/things/building/production/FermentingBarrel_east.png similarity index 100% rename from textures/things/building/production/FermentingBarrel_east.png rename to Mods/Core/Textures/things/building/production/FermentingBarrel_east.png diff --git a/textures/things/building/production/FermentingBarrel_north.png b/Mods/Core/Textures/things/building/production/FermentingBarrel_north.png similarity index 100% rename from textures/things/building/production/FermentingBarrel_north.png rename to Mods/Core/Textures/things/building/production/FermentingBarrel_north.png diff --git a/textures/things/building/production/Hopper_MenuIcon.png b/Mods/Core/Textures/things/building/production/Hopper_MenuIcon.png similarity index 100% rename from textures/things/building/production/Hopper_MenuIcon.png rename to Mods/Core/Textures/things/building/production/Hopper_MenuIcon.png diff --git a/textures/things/building/production/Hopper_east.png b/Mods/Core/Textures/things/building/production/Hopper_east.png similarity index 100% rename from textures/things/building/production/Hopper_east.png rename to Mods/Core/Textures/things/building/production/Hopper_east.png diff --git a/textures/things/building/production/Hopper_north.png b/Mods/Core/Textures/things/building/production/Hopper_north.png similarity index 100% rename from textures/things/building/production/Hopper_north.png rename to Mods/Core/Textures/things/building/production/Hopper_north.png diff --git a/textures/things/building/production/Hopper_south.png b/Mods/Core/Textures/things/building/production/Hopper_south.png similarity index 100% rename from textures/things/building/production/Hopper_south.png rename to Mods/Core/Textures/things/building/production/Hopper_south.png diff --git a/textures/things/building/production/LampSun.png b/Mods/Core/Textures/things/building/production/LampSun.png similarity index 100% rename from textures/things/building/production/LampSun.png rename to Mods/Core/Textures/things/building/production/LampSun.png diff --git a/textures/things/building/production/MechGestatorLargeGlass_east.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_east.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeGlass_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_east.png diff --git a/textures/things/building/production/MechGestatorLargeGlass_north.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_north.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeGlass_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_north.png diff --git a/textures/things/building/production/MechGestatorLargeGlass_south.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_south.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeGlass_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeGlass_south.png diff --git a/textures/things/building/production/MechGestatorLargeTop_east.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeTop_east.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeTop_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeTop_east.png diff --git a/textures/things/building/production/MechGestatorLargeTop_north.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeTop_north.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeTop_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeTop_north.png diff --git a/textures/things/building/production/MechGestatorLargeTop_south.png b/Mods/Core/Textures/things/building/production/MechGestatorLargeTop_south.png similarity index 100% rename from textures/things/building/production/MechGestatorLargeTop_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorLargeTop_south.png diff --git a/textures/things/building/production/MechGestatorLarge_east.png b/Mods/Core/Textures/things/building/production/MechGestatorLarge_east.png similarity index 100% rename from textures/things/building/production/MechGestatorLarge_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorLarge_east.png diff --git a/textures/things/building/production/MechGestatorLarge_north.png b/Mods/Core/Textures/things/building/production/MechGestatorLarge_north.png similarity index 100% rename from textures/things/building/production/MechGestatorLarge_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorLarge_north.png diff --git a/textures/things/building/production/MechGestatorLarge_south.png b/Mods/Core/Textures/things/building/production/MechGestatorLarge_south.png similarity index 100% rename from textures/things/building/production/MechGestatorLarge_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorLarge_south.png diff --git a/textures/things/building/production/MechGestatorStandardGlass_east.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_east.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardGlass_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_east.png diff --git a/textures/things/building/production/MechGestatorStandardGlass_north.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_north.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardGlass_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_north.png diff --git a/textures/things/building/production/MechGestatorStandardGlass_south.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_south.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardGlass_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardGlass_south.png diff --git a/textures/things/building/production/MechGestatorStandardTop_east.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardTop_east.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardTop_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardTop_east.png diff --git a/textures/things/building/production/MechGestatorStandardTop_north.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardTop_north.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardTop_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardTop_north.png diff --git a/textures/things/building/production/MechGestatorStandardTop_south.png b/Mods/Core/Textures/things/building/production/MechGestatorStandardTop_south.png similarity index 100% rename from textures/things/building/production/MechGestatorStandardTop_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandardTop_south.png diff --git a/textures/things/building/production/MechGestatorStandard_east.png b/Mods/Core/Textures/things/building/production/MechGestatorStandard_east.png similarity index 100% rename from textures/things/building/production/MechGestatorStandard_east.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandard_east.png diff --git a/textures/things/building/production/MechGestatorStandard_north.png b/Mods/Core/Textures/things/building/production/MechGestatorStandard_north.png similarity index 100% rename from textures/things/building/production/MechGestatorStandard_north.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandard_north.png diff --git a/textures/things/building/production/MechGestatorStandard_south.png b/Mods/Core/Textures/things/building/production/MechGestatorStandard_south.png similarity index 100% rename from textures/things/building/production/MechGestatorStandard_south.png rename to Mods/Core/Textures/things/building/production/MechGestatorStandard_south.png diff --git a/textures/things/building/production/PollutionPump.png b/Mods/Core/Textures/things/building/production/PollutionPump.png similarity index 100% rename from textures/things/building/production/PollutionPump.png rename to Mods/Core/Textures/things/building/production/PollutionPump.png diff --git a/textures/things/building/production/StandardRecharger_east.png b/Mods/Core/Textures/things/building/production/StandardRecharger_east.png similarity index 100% rename from textures/things/building/production/StandardRecharger_east.png rename to Mods/Core/Textures/things/building/production/StandardRecharger_east.png diff --git a/textures/things/building/production/StandardRecharger_north.png b/Mods/Core/Textures/things/building/production/StandardRecharger_north.png similarity index 100% rename from textures/things/building/production/StandardRecharger_north.png rename to Mods/Core/Textures/things/building/production/StandardRecharger_north.png diff --git a/textures/things/building/production/StandardRecharger_south.png b/Mods/Core/Textures/things/building/production/StandardRecharger_south.png similarity index 100% rename from textures/things/building/production/StandardRecharger_south.png rename to Mods/Core/Textures/things/building/production/StandardRecharger_south.png diff --git a/textures/things/building/production/SubcoreEncoder_east.png b/Mods/Core/Textures/things/building/production/SubcoreEncoder_east.png similarity index 100% rename from textures/things/building/production/SubcoreEncoder_east.png rename to Mods/Core/Textures/things/building/production/SubcoreEncoder_east.png diff --git a/textures/things/building/production/SubcoreEncoder_north.png b/Mods/Core/Textures/things/building/production/SubcoreEncoder_north.png similarity index 100% rename from textures/things/building/production/SubcoreEncoder_north.png rename to Mods/Core/Textures/things/building/production/SubcoreEncoder_north.png diff --git a/textures/things/building/production/SubcoreEncoder_south.png b/Mods/Core/Textures/things/building/production/SubcoreEncoder_south.png similarity index 100% rename from textures/things/building/production/SubcoreEncoder_south.png rename to Mods/Core/Textures/things/building/production/SubcoreEncoder_south.png diff --git a/textures/things/building/production/SubcoreRipscanner_east.png b/Mods/Core/Textures/things/building/production/SubcoreRipscanner_east.png similarity index 100% rename from textures/things/building/production/SubcoreRipscanner_east.png rename to Mods/Core/Textures/things/building/production/SubcoreRipscanner_east.png diff --git a/textures/things/building/production/SubcoreRipscanner_north.png b/Mods/Core/Textures/things/building/production/SubcoreRipscanner_north.png similarity index 100% rename from textures/things/building/production/SubcoreRipscanner_north.png rename to Mods/Core/Textures/things/building/production/SubcoreRipscanner_north.png diff --git a/textures/things/building/production/SubcoreRipscanner_south.png b/Mods/Core/Textures/things/building/production/SubcoreRipscanner_south.png similarity index 100% rename from textures/things/building/production/SubcoreRipscanner_south.png rename to Mods/Core/Textures/things/building/production/SubcoreRipscanner_south.png diff --git a/textures/things/building/production/SubcoreSoftscanner_east.png b/Mods/Core/Textures/things/building/production/SubcoreSoftscanner_east.png similarity index 100% rename from textures/things/building/production/SubcoreSoftscanner_east.png rename to Mods/Core/Textures/things/building/production/SubcoreSoftscanner_east.png diff --git a/textures/things/building/production/SubcoreSoftscanner_north.png b/Mods/Core/Textures/things/building/production/SubcoreSoftscanner_north.png similarity index 100% rename from textures/things/building/production/SubcoreSoftscanner_north.png rename to Mods/Core/Textures/things/building/production/SubcoreSoftscanner_north.png diff --git a/textures/things/building/production/SubcoreSoftscanner_south.png b/Mods/Core/Textures/things/building/production/SubcoreSoftscanner_south.png similarity index 100% rename from textures/things/building/production/SubcoreSoftscanner_south.png rename to Mods/Core/Textures/things/building/production/SubcoreSoftscanner_south.png diff --git a/textures/things/building/production/TableBrewery_east.png b/Mods/Core/Textures/things/building/production/TableBrewery_east.png similarity index 100% rename from textures/things/building/production/TableBrewery_east.png rename to Mods/Core/Textures/things/building/production/TableBrewery_east.png diff --git a/textures/things/building/production/TableBrewery_north.png b/Mods/Core/Textures/things/building/production/TableBrewery_north.png similarity index 100% rename from textures/things/building/production/TableBrewery_north.png rename to Mods/Core/Textures/things/building/production/TableBrewery_north.png diff --git a/textures/things/building/production/TableBrewery_south.png b/Mods/Core/Textures/things/building/production/TableBrewery_south.png similarity index 100% rename from textures/things/building/production/TableBrewery_south.png rename to Mods/Core/Textures/things/building/production/TableBrewery_south.png diff --git a/textures/things/building/production/TableButcher_east.png b/Mods/Core/Textures/things/building/production/TableButcher_east.png similarity index 100% rename from textures/things/building/production/TableButcher_east.png rename to Mods/Core/Textures/things/building/production/TableButcher_east.png diff --git a/textures/things/building/production/TableButcher_north.png b/Mods/Core/Textures/things/building/production/TableButcher_north.png similarity index 100% rename from textures/things/building/production/TableButcher_north.png rename to Mods/Core/Textures/things/building/production/TableButcher_north.png diff --git a/textures/things/building/production/TableButcher_south.png b/Mods/Core/Textures/things/building/production/TableButcher_south.png similarity index 100% rename from textures/things/building/production/TableButcher_south.png rename to Mods/Core/Textures/things/building/production/TableButcher_south.png diff --git a/textures/things/building/production/TableDrugLab_east.png b/Mods/Core/Textures/things/building/production/TableDrugLab_east.png similarity index 100% rename from textures/things/building/production/TableDrugLab_east.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_east.png diff --git a/textures/things/building/production/TableDrugLab_eastm.png b/Mods/Core/Textures/things/building/production/TableDrugLab_eastm.png similarity index 100% rename from textures/things/building/production/TableDrugLab_eastm.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_eastm.png diff --git a/textures/things/building/production/TableDrugLab_north.png b/Mods/Core/Textures/things/building/production/TableDrugLab_north.png similarity index 100% rename from textures/things/building/production/TableDrugLab_north.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_north.png diff --git a/textures/things/building/production/TableDrugLab_northm.png b/Mods/Core/Textures/things/building/production/TableDrugLab_northm.png similarity index 100% rename from textures/things/building/production/TableDrugLab_northm.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_northm.png diff --git a/textures/things/building/production/TableDrugLab_south.png b/Mods/Core/Textures/things/building/production/TableDrugLab_south.png similarity index 100% rename from textures/things/building/production/TableDrugLab_south.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_south.png diff --git a/textures/things/building/production/TableDrugLab_southm.png b/Mods/Core/Textures/things/building/production/TableDrugLab_southm.png similarity index 100% rename from textures/things/building/production/TableDrugLab_southm.png rename to Mods/Core/Textures/things/building/production/TableDrugLab_southm.png diff --git a/textures/things/building/production/TableMachining_east.png b/Mods/Core/Textures/things/building/production/TableMachining_east.png similarity index 100% rename from textures/things/building/production/TableMachining_east.png rename to Mods/Core/Textures/things/building/production/TableMachining_east.png diff --git a/textures/things/building/production/TableMachining_north.png b/Mods/Core/Textures/things/building/production/TableMachining_north.png similarity index 100% rename from textures/things/building/production/TableMachining_north.png rename to Mods/Core/Textures/things/building/production/TableMachining_north.png diff --git a/textures/things/building/production/TableMachining_south.png b/Mods/Core/Textures/things/building/production/TableMachining_south.png similarity index 100% rename from textures/things/building/production/TableMachining_south.png rename to Mods/Core/Textures/things/building/production/TableMachining_south.png diff --git a/textures/things/building/production/TableSmithingElectric_east.png b/Mods/Core/Textures/things/building/production/TableSmithingElectric_east.png similarity index 100% rename from textures/things/building/production/TableSmithingElectric_east.png rename to Mods/Core/Textures/things/building/production/TableSmithingElectric_east.png diff --git a/textures/things/building/production/TableSmithingElectric_north.png b/Mods/Core/Textures/things/building/production/TableSmithingElectric_north.png similarity index 100% rename from textures/things/building/production/TableSmithingElectric_north.png rename to Mods/Core/Textures/things/building/production/TableSmithingElectric_north.png diff --git a/textures/things/building/production/TableSmithingElectric_south.png b/Mods/Core/Textures/things/building/production/TableSmithingElectric_south.png similarity index 100% rename from textures/things/building/production/TableSmithingElectric_south.png rename to Mods/Core/Textures/things/building/production/TableSmithingElectric_south.png diff --git a/textures/things/building/production/TableSmithingFueled_east.png b/Mods/Core/Textures/things/building/production/TableSmithingFueled_east.png similarity index 100% rename from textures/things/building/production/TableSmithingFueled_east.png rename to Mods/Core/Textures/things/building/production/TableSmithingFueled_east.png diff --git a/textures/things/building/production/TableSmithingFueled_north.png b/Mods/Core/Textures/things/building/production/TableSmithingFueled_north.png similarity index 100% rename from textures/things/building/production/TableSmithingFueled_north.png rename to Mods/Core/Textures/things/building/production/TableSmithingFueled_north.png diff --git a/textures/things/building/production/TableSmithingFueled_south.png b/Mods/Core/Textures/things/building/production/TableSmithingFueled_south.png similarity index 100% rename from textures/things/building/production/TableSmithingFueled_south.png rename to Mods/Core/Textures/things/building/production/TableSmithingFueled_south.png diff --git a/textures/things/building/production/TableStoveElectric_east.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_east.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_east.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_east.png diff --git a/textures/things/building/production/TableStoveElectric_eastm.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_eastm.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_eastm.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_eastm.png diff --git a/textures/things/building/production/TableStoveElectric_north.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_north.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_north.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_north.png diff --git a/textures/things/building/production/TableStoveElectric_northm.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_northm.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_northm.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_northm.png diff --git a/textures/things/building/production/TableStoveElectric_south.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_south.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_south.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_south.png diff --git a/textures/things/building/production/TableStoveElectric_southm.png b/Mods/Core/Textures/things/building/production/TableStoveElectric_southm.png similarity index 100% rename from textures/things/building/production/TableStoveElectric_southm.png rename to Mods/Core/Textures/things/building/production/TableStoveElectric_southm.png diff --git a/textures/things/building/production/TableStoveFueled_east.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_east.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_east.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_east.png diff --git a/textures/things/building/production/TableStoveFueled_eastm.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_eastm.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_eastm.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_eastm.png diff --git a/textures/things/building/production/TableStoveFueled_north.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_north.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_north.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_north.png diff --git a/textures/things/building/production/TableStoveFueled_northm.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_northm.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_northm.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_northm.png diff --git a/textures/things/building/production/TableStoveFueled_south.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_south.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_south.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_south.png diff --git a/textures/things/building/production/TableStoveFueled_southm.png b/Mods/Core/Textures/things/building/production/TableStoveFueled_southm.png similarity index 100% rename from textures/things/building/production/TableStoveFueled_southm.png rename to Mods/Core/Textures/things/building/production/TableStoveFueled_southm.png diff --git a/textures/things/building/production/TableTailorElectric_east.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_east.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_east.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_east.png diff --git a/textures/things/building/production/TableTailorElectric_eastm.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_eastm.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_eastm.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_eastm.png diff --git a/textures/things/building/production/TableTailorElectric_north.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_north.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_north.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_north.png diff --git a/textures/things/building/production/TableTailorElectric_northm.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_northm.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_northm.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_northm.png diff --git a/textures/things/building/production/TableTailorElectric_south.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_south.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_south.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_south.png diff --git a/textures/things/building/production/TableTailorElectric_southm.png b/Mods/Core/Textures/things/building/production/TableTailorElectric_southm.png similarity index 100% rename from textures/things/building/production/TableTailorElectric_southm.png rename to Mods/Core/Textures/things/building/production/TableTailorElectric_southm.png diff --git a/textures/things/building/production/TableTailorHand_east.png b/Mods/Core/Textures/things/building/production/TableTailorHand_east.png similarity index 100% rename from textures/things/building/production/TableTailorHand_east.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_east.png diff --git a/textures/things/building/production/TableTailorHand_eastm.png b/Mods/Core/Textures/things/building/production/TableTailorHand_eastm.png similarity index 100% rename from textures/things/building/production/TableTailorHand_eastm.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_eastm.png diff --git a/textures/things/building/production/TableTailorHand_north.png b/Mods/Core/Textures/things/building/production/TableTailorHand_north.png similarity index 100% rename from textures/things/building/production/TableTailorHand_north.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_north.png diff --git a/textures/things/building/production/TableTailorHand_northm.png b/Mods/Core/Textures/things/building/production/TableTailorHand_northm.png similarity index 100% rename from textures/things/building/production/TableTailorHand_northm.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_northm.png diff --git a/textures/things/building/production/TableTailorHand_south.png b/Mods/Core/Textures/things/building/production/TableTailorHand_south.png similarity index 100% rename from textures/things/building/production/TableTailorHand_south.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_south.png diff --git a/textures/things/building/production/TableTailorHand_southm.png b/Mods/Core/Textures/things/building/production/TableTailorHand_southm.png similarity index 100% rename from textures/things/building/production/TableTailorHand_southm.png rename to Mods/Core/Textures/things/building/production/TableTailorHand_southm.png diff --git a/textures/things/building/production/ToFix_NutrientDispenser_east.png b/Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_east.png similarity index 100% rename from textures/things/building/production/ToFix_NutrientDispenser_east.png rename to Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_east.png diff --git a/textures/things/building/production/ToFix_NutrientDispenser_north.png b/Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_north.png similarity index 100% rename from textures/things/building/production/ToFix_NutrientDispenser_north.png rename to Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_north.png diff --git a/textures/things/building/production/ToFix_NutrientDispenser_south.png b/Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_south.png similarity index 100% rename from textures/things/building/production/ToFix_NutrientDispenser_south.png rename to Mods/Core/Textures/things/building/production/ToFix_NutrientDispenser_south.png diff --git a/textures/things/building/production/componentassemblybench_back.png b/Mods/Core/Textures/things/building/production/componentassemblybench_back.png similarity index 100% rename from textures/things/building/production/componentassemblybench_back.png rename to Mods/Core/Textures/things/building/production/componentassemblybench_back.png diff --git a/textures/things/building/production/componentassemblybench_side.png b/Mods/Core/Textures/things/building/production/componentassemblybench_side.png similarity index 100% rename from textures/things/building/production/componentassemblybench_side.png rename to Mods/Core/Textures/things/building/production/componentassemblybench_side.png diff --git a/textures/things/building/production/craftingspot.png b/Mods/Core/Textures/things/building/production/craftingspot.png similarity index 100% rename from textures/things/building/production/craftingspot.png rename to Mods/Core/Textures/things/building/production/craftingspot.png diff --git a/textures/things/building/production/crematorium.png b/Mods/Core/Textures/things/building/production/crematorium.png similarity index 100% rename from textures/things/building/production/crematorium.png rename to Mods/Core/Textures/things/building/production/crematorium.png diff --git a/textures/things/building/production/crematorium_m.png b/Mods/Core/Textures/things/building/production/crematorium_m.png similarity index 100% rename from textures/things/building/production/crematorium_m.png rename to Mods/Core/Textures/things/building/production/crematorium_m.png diff --git a/textures/things/building/production/electricsmelter_back.png b/Mods/Core/Textures/things/building/production/electricsmelter_back.png similarity index 100% rename from textures/things/building/production/electricsmelter_back.png rename to Mods/Core/Textures/things/building/production/electricsmelter_back.png diff --git a/textures/things/building/production/electricsmelter_front.png b/Mods/Core/Textures/things/building/production/electricsmelter_front.png similarity index 100% rename from textures/things/building/production/electricsmelter_front.png rename to Mods/Core/Textures/things/building/production/electricsmelter_front.png diff --git a/textures/things/building/production/electricsmelter_side.png b/Mods/Core/Textures/things/building/production/electricsmelter_side.png similarity index 100% rename from textures/things/building/production/electricsmelter_side.png rename to Mods/Core/Textures/things/building/production/electricsmelter_side.png diff --git a/textures/things/building/production/fermentingbarrel_back.png b/Mods/Core/Textures/things/building/production/fermentingbarrel_back.png similarity index 100% rename from textures/things/building/production/fermentingbarrel_back.png rename to Mods/Core/Textures/things/building/production/fermentingbarrel_back.png diff --git a/textures/things/building/production/fermentingbarrel_side.png b/Mods/Core/Textures/things/building/production/fermentingbarrel_side.png similarity index 100% rename from textures/things/building/production/fermentingbarrel_side.png rename to Mods/Core/Textures/things/building/production/fermentingbarrel_side.png diff --git a/textures/things/building/production/hopper.png b/Mods/Core/Textures/things/building/production/hopper.png similarity index 100% rename from textures/things/building/production/hopper.png rename to Mods/Core/Textures/things/building/production/hopper.png diff --git a/textures/things/building/production/hydroponicsbasin.png b/Mods/Core/Textures/things/building/production/hydroponicsbasin.png similarity index 100% rename from textures/things/building/production/hydroponicsbasin.png rename to Mods/Core/Textures/things/building/production/hydroponicsbasin.png diff --git a/textures/things/building/production/nutrientdispenser.png b/Mods/Core/Textures/things/building/production/nutrientdispenser.png similarity index 100% rename from textures/things/building/production/nutrientdispenser.png rename to Mods/Core/Textures/things/building/production/nutrientdispenser.png diff --git a/textures/things/building/production/refinery.png b/Mods/Core/Textures/things/building/production/refinery.png similarity index 100% rename from textures/things/building/production/refinery.png rename to Mods/Core/Textures/things/building/production/refinery.png diff --git a/textures/things/building/production/researchbenchhitech_back.png b/Mods/Core/Textures/things/building/production/researchbenchhitech_back.png similarity index 100% rename from textures/things/building/production/researchbenchhitech_back.png rename to Mods/Core/Textures/things/building/production/researchbenchhitech_back.png diff --git a/textures/things/building/production/researchbenchhitech_backm.png b/Mods/Core/Textures/things/building/production/researchbenchhitech_backm.png similarity index 100% rename from textures/things/building/production/researchbenchhitech_backm.png rename to Mods/Core/Textures/things/building/production/researchbenchhitech_backm.png diff --git a/textures/things/building/production/researchbenchhitech_side.png b/Mods/Core/Textures/things/building/production/researchbenchhitech_side.png similarity index 100% rename from textures/things/building/production/researchbenchhitech_side.png rename to Mods/Core/Textures/things/building/production/researchbenchhitech_side.png diff --git a/textures/things/building/production/researchbenchhitech_sidem.png b/Mods/Core/Textures/things/building/production/researchbenchhitech_sidem.png similarity index 100% rename from textures/things/building/production/researchbenchhitech_sidem.png rename to Mods/Core/Textures/things/building/production/researchbenchhitech_sidem.png diff --git a/textures/things/building/production/researchbenchsimple_back.png b/Mods/Core/Textures/things/building/production/researchbenchsimple_back.png similarity index 100% rename from textures/things/building/production/researchbenchsimple_back.png rename to Mods/Core/Textures/things/building/production/researchbenchsimple_back.png diff --git a/textures/things/building/production/researchbenchsimple_backm.png b/Mods/Core/Textures/things/building/production/researchbenchsimple_backm.png similarity index 100% rename from textures/things/building/production/researchbenchsimple_backm.png rename to Mods/Core/Textures/things/building/production/researchbenchsimple_backm.png diff --git a/textures/things/building/production/researchbenchsimple_side.png b/Mods/Core/Textures/things/building/production/researchbenchsimple_side.png similarity index 100% rename from textures/things/building/production/researchbenchsimple_side.png rename to Mods/Core/Textures/things/building/production/researchbenchsimple_side.png diff --git a/textures/things/building/production/researchbenchsimple_sidem.png b/Mods/Core/Textures/things/building/production/researchbenchsimple_sidem.png similarity index 100% rename from textures/things/building/production/researchbenchsimple_sidem.png rename to Mods/Core/Textures/things/building/production/researchbenchsimple_sidem.png diff --git a/textures/things/building/production/tablebrewery_back.png b/Mods/Core/Textures/things/building/production/tablebrewery_back.png similarity index 100% rename from textures/things/building/production/tablebrewery_back.png rename to Mods/Core/Textures/things/building/production/tablebrewery_back.png diff --git a/textures/things/building/production/tablebrewery_side.png b/Mods/Core/Textures/things/building/production/tablebrewery_side.png similarity index 100% rename from textures/things/building/production/tablebrewery_side.png rename to Mods/Core/Textures/things/building/production/tablebrewery_side.png diff --git a/textures/things/building/production/tablebutcher_back.png b/Mods/Core/Textures/things/building/production/tablebutcher_back.png similarity index 100% rename from textures/things/building/production/tablebutcher_back.png rename to Mods/Core/Textures/things/building/production/tablebutcher_back.png diff --git a/textures/things/building/production/tablebutcher_front.png b/Mods/Core/Textures/things/building/production/tablebutcher_front.png similarity index 100% rename from textures/things/building/production/tablebutcher_front.png rename to Mods/Core/Textures/things/building/production/tablebutcher_front.png diff --git a/textures/things/building/production/tablebutcher_side.png b/Mods/Core/Textures/things/building/production/tablebutcher_side.png similarity index 100% rename from textures/things/building/production/tablebutcher_side.png rename to Mods/Core/Textures/things/building/production/tablebutcher_side.png diff --git a/textures/things/building/production/tabledruglab_back.png b/Mods/Core/Textures/things/building/production/tabledruglab_back.png similarity index 100% rename from textures/things/building/production/tabledruglab_back.png rename to Mods/Core/Textures/things/building/production/tabledruglab_back.png diff --git a/textures/things/building/production/tabledruglab_backm.png b/Mods/Core/Textures/things/building/production/tabledruglab_backm.png similarity index 100% rename from textures/things/building/production/tabledruglab_backm.png rename to Mods/Core/Textures/things/building/production/tabledruglab_backm.png diff --git a/textures/things/building/production/tabledruglab_side.png b/Mods/Core/Textures/things/building/production/tabledruglab_side.png similarity index 100% rename from textures/things/building/production/tabledruglab_side.png rename to Mods/Core/Textures/things/building/production/tabledruglab_side.png diff --git a/textures/things/building/production/tabledruglab_sidem.png b/Mods/Core/Textures/things/building/production/tabledruglab_sidem.png similarity index 100% rename from textures/things/building/production/tabledruglab_sidem.png rename to Mods/Core/Textures/things/building/production/tabledruglab_sidem.png diff --git a/textures/things/building/production/tablemachining_back.png b/Mods/Core/Textures/things/building/production/tablemachining_back.png similarity index 100% rename from textures/things/building/production/tablemachining_back.png rename to Mods/Core/Textures/things/building/production/tablemachining_back.png diff --git a/textures/things/building/production/tablemachining_front.png b/Mods/Core/Textures/things/building/production/tablemachining_front.png similarity index 100% rename from textures/things/building/production/tablemachining_front.png rename to Mods/Core/Textures/things/building/production/tablemachining_front.png diff --git a/textures/things/building/production/tablemachining_side.png b/Mods/Core/Textures/things/building/production/tablemachining_side.png similarity index 100% rename from textures/things/building/production/tablemachining_side.png rename to Mods/Core/Textures/things/building/production/tablemachining_side.png diff --git a/textures/things/building/production/tablesculpting_back.png b/Mods/Core/Textures/things/building/production/tablesculpting_back.png similarity index 100% rename from textures/things/building/production/tablesculpting_back.png rename to Mods/Core/Textures/things/building/production/tablesculpting_back.png diff --git a/textures/things/building/production/tablesculpting_side.png b/Mods/Core/Textures/things/building/production/tablesculpting_side.png similarity index 100% rename from textures/things/building/production/tablesculpting_side.png rename to Mods/Core/Textures/things/building/production/tablesculpting_side.png diff --git a/textures/things/building/production/tablesmithingelectric_back.png b/Mods/Core/Textures/things/building/production/tablesmithingelectric_back.png similarity index 100% rename from textures/things/building/production/tablesmithingelectric_back.png rename to Mods/Core/Textures/things/building/production/tablesmithingelectric_back.png diff --git a/textures/things/building/production/tablesmithingelectric_side.png b/Mods/Core/Textures/things/building/production/tablesmithingelectric_side.png similarity index 100% rename from textures/things/building/production/tablesmithingelectric_side.png rename to Mods/Core/Textures/things/building/production/tablesmithingelectric_side.png diff --git a/textures/things/building/production/tablesmithingfueled_back.png b/Mods/Core/Textures/things/building/production/tablesmithingfueled_back.png similarity index 100% rename from textures/things/building/production/tablesmithingfueled_back.png rename to Mods/Core/Textures/things/building/production/tablesmithingfueled_back.png diff --git a/textures/things/building/production/tablesmithingfueled_side.png b/Mods/Core/Textures/things/building/production/tablesmithingfueled_side.png similarity index 100% rename from textures/things/building/production/tablesmithingfueled_side.png rename to Mods/Core/Textures/things/building/production/tablesmithingfueled_side.png diff --git a/textures/things/building/production/tablestonecutter_back.png b/Mods/Core/Textures/things/building/production/tablestonecutter_back.png similarity index 100% rename from textures/things/building/production/tablestonecutter_back.png rename to Mods/Core/Textures/things/building/production/tablestonecutter_back.png diff --git a/textures/things/building/production/tablestonecutter_side.png b/Mods/Core/Textures/things/building/production/tablestonecutter_side.png similarity index 100% rename from textures/things/building/production/tablestonecutter_side.png rename to Mods/Core/Textures/things/building/production/tablestonecutter_side.png diff --git a/textures/things/building/production/tablestoveelectric_back.png b/Mods/Core/Textures/things/building/production/tablestoveelectric_back.png similarity index 100% rename from textures/things/building/production/tablestoveelectric_back.png rename to Mods/Core/Textures/things/building/production/tablestoveelectric_back.png diff --git a/textures/things/building/production/tablestoveelectric_side.png b/Mods/Core/Textures/things/building/production/tablestoveelectric_side.png similarity index 100% rename from textures/things/building/production/tablestoveelectric_side.png rename to Mods/Core/Textures/things/building/production/tablestoveelectric_side.png diff --git a/textures/things/building/production/tablestovefueled_back.png b/Mods/Core/Textures/things/building/production/tablestovefueled_back.png similarity index 100% rename from textures/things/building/production/tablestovefueled_back.png rename to Mods/Core/Textures/things/building/production/tablestovefueled_back.png diff --git a/textures/things/building/production/tablestovefueled_side.png b/Mods/Core/Textures/things/building/production/tablestovefueled_side.png similarity index 100% rename from textures/things/building/production/tablestovefueled_side.png rename to Mods/Core/Textures/things/building/production/tablestovefueled_side.png diff --git a/textures/things/building/production/tabletailorelectric_back.png b/Mods/Core/Textures/things/building/production/tabletailorelectric_back.png similarity index 100% rename from textures/things/building/production/tabletailorelectric_back.png rename to Mods/Core/Textures/things/building/production/tabletailorelectric_back.png diff --git a/textures/things/building/production/tabletailorelectric_side.png b/Mods/Core/Textures/things/building/production/tabletailorelectric_side.png similarity index 100% rename from textures/things/building/production/tabletailorelectric_side.png rename to Mods/Core/Textures/things/building/production/tabletailorelectric_side.png diff --git a/textures/things/building/production/tabletailorhand_back.png b/Mods/Core/Textures/things/building/production/tabletailorhand_back.png similarity index 100% rename from textures/things/building/production/tabletailorhand_back.png rename to Mods/Core/Textures/things/building/production/tabletailorhand_back.png diff --git a/textures/things/building/production/tabletailorhand_side.png b/Mods/Core/Textures/things/building/production/tabletailorhand_side.png similarity index 100% rename from textures/things/building/production/tabletailorhand_side.png rename to Mods/Core/Textures/things/building/production/tabletailorhand_side.png diff --git a/textures/things/building/ruins/AirConditioner.png b/Mods/Core/Textures/things/building/ruins/AirConditioner.png similarity index 100% rename from textures/things/building/ruins/AirConditioner.png rename to Mods/Core/Textures/things/building/ruins/AirConditioner.png diff --git a/textures/things/building/ruins/AncientBandNode.png b/Mods/Core/Textures/things/building/ruins/AncientBandNode.png similarity index 100% rename from textures/things/building/ruins/AncientBandNode.png rename to Mods/Core/Textures/things/building/ruins/AncientBandNode.png diff --git a/textures/things/building/ruins/AncientBasicRecharger_east.png b/Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_east.png similarity index 100% rename from textures/things/building/ruins/AncientBasicRecharger_east.png rename to Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_east.png diff --git a/textures/things/building/ruins/AncientBasicRecharger_north.png b/Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_north.png similarity index 100% rename from textures/things/building/ruins/AncientBasicRecharger_north.png rename to Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_north.png diff --git a/textures/things/building/ruins/AncientBasicRecharger_south.png b/Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_south.png similarity index 100% rename from textures/things/building/ruins/AncientBasicRecharger_south.png rename to Mods/Core/Textures/things/building/ruins/AncientBasicRecharger_south.png diff --git a/textures/things/building/ruins/AncientBed_east.png b/Mods/Core/Textures/things/building/ruins/AncientBed_east.png similarity index 100% rename from textures/things/building/ruins/AncientBed_east.png rename to Mods/Core/Textures/things/building/ruins/AncientBed_east.png diff --git a/textures/things/building/ruins/AncientBed_north.png b/Mods/Core/Textures/things/building/ruins/AncientBed_north.png similarity index 100% rename from textures/things/building/ruins/AncientBed_north.png rename to Mods/Core/Textures/things/building/ruins/AncientBed_north.png diff --git a/textures/things/building/ruins/AncientBed_south.png b/Mods/Core/Textures/things/building/ruins/AncientBed_south.png similarity index 100% rename from textures/things/building/ruins/AncientBed_south.png rename to Mods/Core/Textures/things/building/ruins/AncientBed_south.png diff --git a/textures/things/building/ruins/AncientBustedShipBeacon.png b/Mods/Core/Textures/things/building/ruins/AncientBustedShipBeacon.png similarity index 100% rename from textures/things/building/ruins/AncientBustedShipBeacon.png rename to Mods/Core/Textures/things/building/ruins/AncientBustedShipBeacon.png diff --git a/textures/things/building/ruins/AncientCommsConsoleOpen_east.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_east.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsoleOpen_east.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_east.png diff --git a/textures/things/building/ruins/AncientCommsConsoleOpen_north.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_north.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsoleOpen_north.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_north.png diff --git a/textures/things/building/ruins/AncientCommsConsoleOpen_south.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_south.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsoleOpen_south.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsoleOpen_south.png diff --git a/textures/things/building/ruins/AncientCommsConsole_east.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsole_east.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsole_east.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsole_east.png diff --git a/textures/things/building/ruins/AncientCommsConsole_north.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsole_north.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsole_north.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsole_north.png diff --git a/textures/things/building/ruins/AncientCommsConsole_south.png b/Mods/Core/Textures/things/building/ruins/AncientCommsConsole_south.png similarity index 100% rename from textures/things/building/ruins/AncientCommsConsole_south.png rename to Mods/Core/Textures/things/building/ruins/AncientCommsConsole_south.png diff --git a/textures/things/building/ruins/AncientCryptosleepPod_east.png b/Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_east.png similarity index 100% rename from textures/things/building/ruins/AncientCryptosleepPod_east.png rename to Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_east.png diff --git a/textures/things/building/ruins/AncientCryptosleepPod_north.png b/Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_north.png similarity index 100% rename from textures/things/building/ruins/AncientCryptosleepPod_north.png rename to Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_north.png diff --git a/textures/things/building/ruins/AncientCryptosleepPod_south.png b/Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_south.png similarity index 100% rename from textures/things/building/ruins/AncientCryptosleepPod_south.png rename to Mods/Core/Textures/things/building/ruins/AncientCryptosleepPod_south.png diff --git a/textures/things/building/ruins/AncientDisplayBank_east.png b/Mods/Core/Textures/things/building/ruins/AncientDisplayBank_east.png similarity index 100% rename from textures/things/building/ruins/AncientDisplayBank_east.png rename to Mods/Core/Textures/things/building/ruins/AncientDisplayBank_east.png diff --git a/textures/things/building/ruins/AncientDisplayBank_north.png b/Mods/Core/Textures/things/building/ruins/AncientDisplayBank_north.png similarity index 100% rename from textures/things/building/ruins/AncientDisplayBank_north.png rename to Mods/Core/Textures/things/building/ruins/AncientDisplayBank_north.png diff --git a/textures/things/building/ruins/AncientDisplayBank_south.png b/Mods/Core/Textures/things/building/ruins/AncientDisplayBank_south.png similarity index 100% rename from textures/things/building/ruins/AncientDisplayBank_south.png rename to Mods/Core/Textures/things/building/ruins/AncientDisplayBank_south.png diff --git a/textures/things/building/ruins/AncientEnemyTerminal_east.png b/Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_east.png similarity index 100% rename from textures/things/building/ruins/AncientEnemyTerminal_east.png rename to Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_east.png diff --git a/textures/things/building/ruins/AncientEnemyTerminal_north.png b/Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_north.png similarity index 100% rename from textures/things/building/ruins/AncientEnemyTerminal_north.png rename to Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_north.png diff --git a/textures/things/building/ruins/AncientEnemyTerminal_south.png b/Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_south.png similarity index 100% rename from textures/things/building/ruins/AncientEnemyTerminal_south.png rename to Mods/Core/Textures/things/building/ruins/AncientEnemyTerminal_south.png diff --git a/textures/things/building/ruins/AncientEquipmentBlocks_east.png b/Mods/Core/Textures/things/building/ruins/AncientEquipmentBlocks_east.png similarity index 100% rename from textures/things/building/ruins/AncientEquipmentBlocks_east.png rename to Mods/Core/Textures/things/building/ruins/AncientEquipmentBlocks_east.png diff --git a/textures/things/building/ruins/AncientEquipmentBlocks_north.png b/Mods/Core/Textures/things/building/ruins/AncientEquipmentBlocks_north.png similarity index 100% rename from textures/things/building/ruins/AncientEquipmentBlocks_north.png rename to Mods/Core/Textures/things/building/ruins/AncientEquipmentBlocks_north.png diff --git a/textures/things/building/ruins/AncientHermeticCrateOpen_east.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_east.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrateOpen_east.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_east.png diff --git a/textures/things/building/ruins/AncientHermeticCrateOpen_north.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_north.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrateOpen_north.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_north.png diff --git a/textures/things/building/ruins/AncientHermeticCrateOpen_south.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_south.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrateOpen_south.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrateOpen_south.png diff --git a/textures/things/building/ruins/AncientHermeticCrate_east.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_east.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrate_east.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_east.png diff --git a/textures/things/building/ruins/AncientHermeticCrate_north.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_north.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrate_north.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_north.png diff --git a/textures/things/building/ruins/AncientHermeticCrate_south.png b/Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_south.png similarity index 100% rename from textures/things/building/ruins/AncientHermeticCrate_south.png rename to Mods/Core/Textures/things/building/ruins/AncientHermeticCrate_south.png diff --git a/textures/things/building/ruins/AncientLamp.png b/Mods/Core/Textures/things/building/ruins/AncientLamp.png similarity index 100% rename from textures/things/building/ruins/AncientLamp.png rename to Mods/Core/Textures/things/building/ruins/AncientLamp.png diff --git a/textures/things/building/ruins/AncientLargeMechFormer_south.png b/Mods/Core/Textures/things/building/ruins/AncientLargeMechFormer_south.png similarity index 100% rename from textures/things/building/ruins/AncientLargeMechFormer_south.png rename to Mods/Core/Textures/things/building/ruins/AncientLargeMechFormer_south.png diff --git a/textures/things/building/ruins/AncientLargeMechGestator.png b/Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator.png similarity index 100% rename from textures/things/building/ruins/AncientLargeMechGestator.png rename to Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator.png diff --git a/textures/things/building/ruins/AncientLargeMechGestator_east.png b/Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_east.png similarity index 100% rename from textures/things/building/ruins/AncientLargeMechGestator_east.png rename to Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_east.png diff --git a/textures/things/building/ruins/AncientLargeMechGestator_north.png b/Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_north.png similarity index 100% rename from textures/things/building/ruins/AncientLargeMechGestator_north.png rename to Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_north.png diff --git a/textures/things/building/ruins/AncientLargeMechGestator_south.png b/Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_south.png similarity index 100% rename from textures/things/building/ruins/AncientLargeMechGestator_south.png rename to Mods/Core/Textures/things/building/ruins/AncientLargeMechGestator_south.png diff --git a/textures/things/building/ruins/AncientLockerBank_east.png b/Mods/Core/Textures/things/building/ruins/AncientLockerBank_east.png similarity index 100% rename from textures/things/building/ruins/AncientLockerBank_east.png rename to Mods/Core/Textures/things/building/ruins/AncientLockerBank_east.png diff --git a/textures/things/building/ruins/AncientLockerBank_north.png b/Mods/Core/Textures/things/building/ruins/AncientLockerBank_north.png similarity index 100% rename from textures/things/building/ruins/AncientLockerBank_north.png rename to Mods/Core/Textures/things/building/ruins/AncientLockerBank_north.png diff --git a/textures/things/building/ruins/AncientLockerBank_south.png b/Mods/Core/Textures/things/building/ruins/AncientLockerBank_south.png similarity index 100% rename from textures/things/building/ruins/AncientLockerBank_south.png rename to Mods/Core/Textures/things/building/ruins/AncientLockerBank_south.png diff --git a/textures/things/building/ruins/AncientMechGestator_east.png b/Mods/Core/Textures/things/building/ruins/AncientMechGestator_east.png similarity index 100% rename from textures/things/building/ruins/AncientMechGestator_east.png rename to Mods/Core/Textures/things/building/ruins/AncientMechGestator_east.png diff --git a/textures/things/building/ruins/AncientMechGestator_north.png b/Mods/Core/Textures/things/building/ruins/AncientMechGestator_north.png similarity index 100% rename from textures/things/building/ruins/AncientMechGestator_north.png rename to Mods/Core/Textures/things/building/ruins/AncientMechGestator_north.png diff --git a/textures/things/building/ruins/AncientMechGestator_south.png b/Mods/Core/Textures/things/building/ruins/AncientMechGestator_south.png similarity index 100% rename from textures/things/building/ruins/AncientMechGestator_south.png rename to Mods/Core/Textures/things/building/ruins/AncientMechGestator_south.png diff --git a/textures/things/building/ruins/AncientMegacannonBarrel_east.png b/Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_east.png similarity index 100% rename from textures/things/building/ruins/AncientMegacannonBarrel_east.png rename to Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_east.png diff --git a/textures/things/building/ruins/AncientMegacannonBarrel_north.png b/Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_north.png similarity index 100% rename from textures/things/building/ruins/AncientMegacannonBarrel_north.png rename to Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_north.png diff --git a/textures/things/building/ruins/AncientMegacannonBarrel_south.png b/Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_south.png similarity index 100% rename from textures/things/building/ruins/AncientMegacannonBarrel_south.png rename to Mods/Core/Textures/things/building/ruins/AncientMegacannonBarrel_south.png diff --git a/textures/things/building/ruins/AncientOperatingTable_east.png b/Mods/Core/Textures/things/building/ruins/AncientOperatingTable_east.png similarity index 100% rename from textures/things/building/ruins/AncientOperatingTable_east.png rename to Mods/Core/Textures/things/building/ruins/AncientOperatingTable_east.png diff --git a/textures/things/building/ruins/AncientOperatingTable_north.png b/Mods/Core/Textures/things/building/ruins/AncientOperatingTable_north.png similarity index 100% rename from textures/things/building/ruins/AncientOperatingTable_north.png rename to Mods/Core/Textures/things/building/ruins/AncientOperatingTable_north.png diff --git a/textures/things/building/ruins/AncientOperatingTable_south.png b/Mods/Core/Textures/things/building/ruins/AncientOperatingTable_south.png similarity index 100% rename from textures/things/building/ruins/AncientOperatingTable_south.png rename to Mods/Core/Textures/things/building/ruins/AncientOperatingTable_south.png diff --git a/textures/things/building/ruins/AncientSecurityCrateOpen_east.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_east.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrateOpen_east.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_east.png diff --git a/textures/things/building/ruins/AncientSecurityCrateOpen_north.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_north.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrateOpen_north.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_north.png diff --git a/textures/things/building/ruins/AncientSecurityCrateOpen_south.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_south.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrateOpen_south.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrateOpen_south.png diff --git a/textures/things/building/ruins/AncientSecurityCrate_east.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_east.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrate_east.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_east.png diff --git a/textures/things/building/ruins/AncientSecurityCrate_north.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_north.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrate_north.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_north.png diff --git a/textures/things/building/ruins/AncientSecurityCrate_south.png b/Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_south.png similarity index 100% rename from textures/things/building/ruins/AncientSecurityCrate_south.png rename to Mods/Core/Textures/things/building/ruins/AncientSecurityCrate_south.png diff --git a/textures/things/building/ruins/AncientStandardRecharger_east.png b/Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_east.png similarity index 100% rename from textures/things/building/ruins/AncientStandardRecharger_east.png rename to Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_east.png diff --git a/textures/things/building/ruins/AncientStandardRecharger_north.png b/Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_north.png similarity index 100% rename from textures/things/building/ruins/AncientStandardRecharger_north.png rename to Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_north.png diff --git a/textures/things/building/ruins/AncientStandardRecharger_south.png b/Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_south.png similarity index 100% rename from textures/things/building/ruins/AncientStandardRecharger_south.png rename to Mods/Core/Textures/things/building/ruins/AncientStandardRecharger_south.png diff --git a/textures/things/building/ruins/AncientStorageCylinder_east.png b/Mods/Core/Textures/things/building/ruins/AncientStorageCylinder_east.png similarity index 100% rename from textures/things/building/ruins/AncientStorageCylinder_east.png rename to Mods/Core/Textures/things/building/ruins/AncientStorageCylinder_east.png diff --git a/textures/things/building/ruins/AncientStorageCylinder_south.png b/Mods/Core/Textures/things/building/ruins/AncientStorageCylinder_south.png similarity index 100% rename from textures/things/building/ruins/AncientStorageCylinder_south.png rename to Mods/Core/Textures/things/building/ruins/AncientStorageCylinder_south.png diff --git a/textures/things/building/ruins/AncientSystemRack_east.png b/Mods/Core/Textures/things/building/ruins/AncientSystemRack_east.png similarity index 100% rename from textures/things/building/ruins/AncientSystemRack_east.png rename to Mods/Core/Textures/things/building/ruins/AncientSystemRack_east.png diff --git a/textures/things/building/ruins/AncientSystemRack_north.png b/Mods/Core/Textures/things/building/ruins/AncientSystemRack_north.png similarity index 100% rename from textures/things/building/ruins/AncientSystemRack_north.png rename to Mods/Core/Textures/things/building/ruins/AncientSystemRack_north.png diff --git a/textures/things/building/ruins/AncientToxifierGenerator.png b/Mods/Core/Textures/things/building/ruins/AncientToxifierGenerator.png similarity index 100% rename from textures/things/building/ruins/AncientToxifierGenerator.png rename to Mods/Core/Textures/things/building/ruins/AncientToxifierGenerator.png diff --git a/textures/things/building/ruins/AncientWarspiderRemains.png b/Mods/Core/Textures/things/building/ruins/AncientWarspiderRemains.png similarity index 100% rename from textures/things/building/ruins/AncientWarspiderRemains.png rename to Mods/Core/Textures/things/building/ruins/AncientWarspiderRemains.png diff --git a/textures/things/building/ruins/AncientWarsprinterRemains.png b/Mods/Core/Textures/things/building/ruins/AncientWarsprinterRemains.png similarity index 100% rename from textures/things/building/ruins/AncientWarsprinterRemains.png rename to Mods/Core/Textures/things/building/ruins/AncientWarsprinterRemains.png diff --git a/textures/things/building/ruins/AncientWarwalkerClaw_east.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerClaw_east.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerClaw_east.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerClaw_east.png diff --git a/textures/things/building/ruins/AncientWarwalkerClaw_south.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerClaw_south.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerClaw_south.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerClaw_south.png diff --git a/textures/things/building/ruins/AncientWarwalkerFoot.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerFoot.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerFoot.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerFoot.png diff --git a/textures/things/building/ruins/AncientWarwalkerLeg_east.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerLeg_east.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerLeg_east.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerLeg_east.png diff --git a/textures/things/building/ruins/AncientWarwalkerLeg_south.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerLeg_south.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerLeg_south.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerLeg_south.png diff --git a/textures/things/building/ruins/AncientWarwalkerShell.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerShell.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerShell.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerShell.png diff --git a/textures/things/building/ruins/AncientWarwalkerTorso_east.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_east.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerTorso_east.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_east.png diff --git a/textures/things/building/ruins/AncientWarwalkerTorso_north.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_north.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerTorso_north.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_north.png diff --git a/textures/things/building/ruins/AncientWarwalkerTorso_south.png b/Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_south.png similarity index 100% rename from textures/things/building/ruins/AncientWarwalkerTorso_south.png rename to Mods/Core/Textures/things/building/ruins/AncientWarwalkerTorso_south.png diff --git a/textures/things/building/ruins/CrateLarge.png b/Mods/Core/Textures/things/building/ruins/CrateLarge.png similarity index 100% rename from textures/things/building/ruins/CrateLarge.png rename to Mods/Core/Textures/things/building/ruins/CrateLarge.png diff --git a/textures/things/building/ruins/CrateLong.png b/Mods/Core/Textures/things/building/ruins/CrateLong.png similarity index 100% rename from textures/things/building/ruins/CrateLong.png rename to Mods/Core/Textures/things/building/ruins/CrateLong.png diff --git a/textures/things/building/ruins/CrateSmall.png b/Mods/Core/Textures/things/building/ruins/CrateSmall.png similarity index 100% rename from textures/things/building/ruins/CrateSmall.png rename to Mods/Core/Textures/things/building/ruins/CrateSmall.png diff --git a/textures/things/building/ruins/Fridge.png b/Mods/Core/Textures/things/building/ruins/Fridge.png similarity index 100% rename from textures/things/building/ruins/Fridge.png rename to Mods/Core/Textures/things/building/ruins/Fridge.png diff --git a/textures/things/building/ruins/JetEngine.png b/Mods/Core/Textures/things/building/ruins/JetEngine.png similarity index 100% rename from textures/things/building/ruins/JetEngine.png rename to Mods/Core/Textures/things/building/ruins/JetEngine.png diff --git a/textures/things/building/ruins/KitchenSink.png b/Mods/Core/Textures/things/building/ruins/KitchenSink.png similarity index 100% rename from textures/things/building/ruins/KitchenSink.png rename to Mods/Core/Textures/things/building/ruins/KitchenSink.png diff --git a/textures/things/building/ruins/LargeEngineBlock.png b/Mods/Core/Textures/things/building/ruins/LargeEngineBlock.png similarity index 100% rename from textures/things/building/ruins/LargeEngineBlock.png rename to Mods/Core/Textures/things/building/ruins/LargeEngineBlock.png diff --git a/textures/things/building/ruins/PipelineSection.png b/Mods/Core/Textures/things/building/ruins/PipelineSection.png similarity index 100% rename from textures/things/building/ruins/PipelineSection.png rename to Mods/Core/Textures/things/building/ruins/PipelineSection.png diff --git a/textures/things/building/ruins/PodCar.png b/Mods/Core/Textures/things/building/ruins/PodCar.png similarity index 100% rename from textures/things/building/ruins/PodCar.png rename to Mods/Core/Textures/things/building/ruins/PodCar.png diff --git a/textures/things/building/ruins/Postbox.png b/Mods/Core/Textures/things/building/ruins/Postbox.png similarity index 100% rename from textures/things/building/ruins/Postbox.png rename to Mods/Core/Textures/things/building/ruins/Postbox.png diff --git a/textures/things/building/ruins/RuinedTank.png b/Mods/Core/Textures/things/building/ruins/RuinedTank.png similarity index 100% rename from textures/things/building/ruins/RuinedTank.png rename to Mods/Core/Textures/things/building/ruins/RuinedTank.png diff --git a/textures/things/building/ruins/RustedCarA_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarA_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarA_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarA_east.png diff --git a/textures/things/building/ruins/RustedCarA_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarA_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarA_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarA_north.png diff --git a/textures/things/building/ruins/RustedCarA_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarA_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarA_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarA_south.png diff --git a/textures/things/building/ruins/RustedCarB_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarB_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarB_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarB_east.png diff --git a/textures/things/building/ruins/RustedCarB_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarB_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarB_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarB_north.png diff --git a/textures/things/building/ruins/RustedCarB_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarB_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarB_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarB_south.png diff --git a/textures/things/building/ruins/RustedCarC_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarC_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarC_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarC_east.png diff --git a/textures/things/building/ruins/RustedCarC_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarC_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarC_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarC_north.png diff --git a/textures/things/building/ruins/RustedCarC_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarC_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarC_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarC_south.png diff --git a/textures/things/building/ruins/RustedCarD_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarD_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarD_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarD_east.png diff --git a/textures/things/building/ruins/RustedCarD_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarD_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarD_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarD_north.png diff --git a/textures/things/building/ruins/RustedCarD_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarD_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarD_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarD_south.png diff --git a/textures/things/building/ruins/RustedCarE_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarE_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarE_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarE_east.png diff --git a/textures/things/building/ruins/RustedCarE_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarE_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarE_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarE_north.png diff --git a/textures/things/building/ruins/RustedCarE_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarE_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarE_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarE_south.png diff --git a/textures/things/building/ruins/RustedCarFrame_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarFrame_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarFrame_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarFrame_east.png diff --git a/textures/things/building/ruins/RustedCarFrame_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarFrame_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarFrame_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarFrame_north.png diff --git a/textures/things/building/ruins/RustedCarFrame_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarFrame_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarFrame_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarFrame_south.png diff --git a/textures/things/building/ruins/RustedCarTruck_east.png b/Mods/Core/Textures/things/building/ruins/RustedCarTruck_east.png similarity index 100% rename from textures/things/building/ruins/RustedCarTruck_east.png rename to Mods/Core/Textures/things/building/ruins/RustedCarTruck_east.png diff --git a/textures/things/building/ruins/RustedCarTruck_north.png b/Mods/Core/Textures/things/building/ruins/RustedCarTruck_north.png similarity index 100% rename from textures/things/building/ruins/RustedCarTruck_north.png rename to Mods/Core/Textures/things/building/ruins/RustedCarTruck_north.png diff --git a/textures/things/building/ruins/RustedCarTruck_south.png b/Mods/Core/Textures/things/building/ruins/RustedCarTruck_south.png similarity index 100% rename from textures/things/building/ruins/RustedCarTruck_south.png rename to Mods/Core/Textures/things/building/ruins/RustedCarTruck_south.png diff --git a/textures/things/building/ruins/RustedMilitaryJeep_east.png b/Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_east.png similarity index 100% rename from textures/things/building/ruins/RustedMilitaryJeep_east.png rename to Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_east.png diff --git a/textures/things/building/ruins/RustedMilitaryJeep_north.png b/Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_north.png similarity index 100% rename from textures/things/building/ruins/RustedMilitaryJeep_north.png rename to Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_north.png diff --git a/textures/things/building/ruins/RustedMilitaryJeep_south.png b/Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_south.png similarity index 100% rename from textures/things/building/ruins/RustedMilitaryJeep_south.png rename to Mods/Core/Textures/things/building/ruins/RustedMilitaryJeep_south.png diff --git a/textures/things/building/ruins/Stove.png b/Mods/Core/Textures/things/building/ruins/Stove.png similarity index 100% rename from textures/things/building/ruins/Stove.png rename to Mods/Core/Textures/things/building/ruins/Stove.png diff --git a/textures/things/building/ruins/VendingMachine.png b/Mods/Core/Textures/things/building/ruins/VendingMachine.png similarity index 100% rename from textures/things/building/ruins/VendingMachine.png rename to Mods/Core/Textures/things/building/ruins/VendingMachine.png diff --git a/textures/things/building/ruins/ancientbarrel/Barrel.png b/Mods/Core/Textures/things/building/ruins/ancientbarrel/Barrel.png similarity index 100% rename from textures/things/building/ruins/ancientbarrel/Barrel.png rename to Mods/Core/Textures/things/building/ruins/ancientbarrel/Barrel.png diff --git a/textures/things/building/ruins/ancientbarrel/BarrelA.png b/Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelA.png similarity index 100% rename from textures/things/building/ruins/ancientbarrel/BarrelA.png rename to Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelA.png diff --git a/textures/things/building/ruins/ancientbarrel/BarrelB.png b/Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelB.png similarity index 100% rename from textures/things/building/ruins/ancientbarrel/BarrelB.png rename to Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelB.png diff --git a/textures/things/building/ruins/ancientbarrel/BarrelC.png b/Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelC.png similarity index 100% rename from textures/things/building/ruins/ancientbarrel/BarrelC.png rename to Mods/Core/Textures/things/building/ruins/ancientbarrel/BarrelC.png diff --git a/textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarriera.png b/Mods/Core/Textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarriera.png similarity index 100% rename from textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarriera.png rename to Mods/Core/Textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarriera.png diff --git a/textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb.png b/Mods/Core/Textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb.png similarity index 100% rename from textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb.png rename to Mods/Core/Textures/things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb.png diff --git a/textures/things/building/ruins/ancientcrate/CrateA.png b/Mods/Core/Textures/things/building/ruins/ancientcrate/CrateA.png similarity index 100% rename from textures/things/building/ruins/ancientcrate/CrateA.png rename to Mods/Core/Textures/things/building/ruins/ancientcrate/CrateA.png diff --git a/textures/things/building/ruins/ancientcrate/CrateB.png b/Mods/Core/Textures/things/building/ruins/ancientcrate/CrateB.png similarity index 100% rename from textures/things/building/ruins/ancientcrate/CrateB.png rename to Mods/Core/Textures/things/building/ruins/ancientcrate/CrateB.png diff --git a/textures/things/building/ruins/ancientcrate/CrateC.png b/Mods/Core/Textures/things/building/ruins/ancientcrate/CrateC.png similarity index 100% rename from textures/things/building/ruins/ancientcrate/CrateC.png rename to Mods/Core/Textures/things/building/ruins/ancientcrate/CrateC.png diff --git a/textures/things/building/ruins/ancientexostrider/AncientExostriderCannon.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderCannon.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/AncientExostriderCannon.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderCannon.png diff --git a/textures/things/building/ruins/ancientexostrider/AncientExostriderHead.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderHead.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/AncientExostriderHead.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderHead.png diff --git a/textures/things/building/ruins/ancientexostrider/AncientExostriderMidsection.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderMidsection.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/AncientExostriderMidsection.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/AncientExostriderMidsection.png diff --git a/textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA.png diff --git a/textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB.png diff --git a/textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC.png b/Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC.png similarity index 100% rename from textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC.png rename to Mods/Core/Textures/things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC.png diff --git a/textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA.png b/Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA.png similarity index 100% rename from textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA.png rename to Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA.png diff --git a/textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB.png b/Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB.png similarity index 100% rename from textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB.png rename to Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB.png diff --git a/textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC.png b/Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC.png similarity index 100% rename from textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC.png rename to Mods/Core/Textures/things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC.png diff --git a/textures/things/building/ruins/ancientgenerator/AncientGeneratorA.png b/Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorA.png similarity index 100% rename from textures/things/building/ruins/ancientgenerator/AncientGeneratorA.png rename to Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorA.png diff --git a/textures/things/building/ruins/ancientgenerator/AncientGeneratorB.png b/Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorB.png similarity index 100% rename from textures/things/building/ruins/ancientgenerator/AncientGeneratorB.png rename to Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorB.png diff --git a/textures/things/building/ruins/ancientgenerator/AncientGeneratorC.png b/Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorC.png similarity index 100% rename from textures/things/building/ruins/ancientgenerator/AncientGeneratorC.png rename to Mods/Core/Textures/things/building/ruins/ancientgenerator/AncientGeneratorC.png diff --git a/textures/things/building/ruins/ancientlamppost/ancientlampposta.png b/Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlampposta.png similarity index 100% rename from textures/things/building/ruins/ancientlamppost/ancientlampposta.png rename to Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlampposta.png diff --git a/textures/things/building/ruins/ancientlamppost/ancientlamppostb.png b/Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlamppostb.png similarity index 100% rename from textures/things/building/ruins/ancientlamppost/ancientlamppostb.png rename to Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlamppostb.png diff --git a/textures/things/building/ruins/ancientlamppost/ancientlamppostc.png b/Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlamppostc.png similarity index 100% rename from textures/things/building/ruins/ancientlamppost/ancientlamppostc.png rename to Mods/Core/Textures/things/building/ruins/ancientlamppost/ancientlamppostc.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusA.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusA.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusA.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusA.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusB.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusB.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusB.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusB.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusC.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusC.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusC.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusC.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusD.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusD.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusD.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusD.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusE.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusE.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusE.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusE.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusF.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusF.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusF.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusF.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusG.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusG.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusG.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusG.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusH.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusH.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusH.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusH.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusI.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusI.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusI.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusI.png diff --git a/textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusJ.png b/Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusJ.png similarity index 100% rename from textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusJ.png rename to Mods/Core/Textures/things/building/ruins/ancientmechdetritus/AncientMechDetritusJ.png diff --git a/textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA.png b/Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA.png similarity index 100% rename from textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA.png rename to Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA.png diff --git a/textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB.png b/Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB.png similarity index 100% rename from textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB.png rename to Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB.png diff --git a/textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC.png b/Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC.png similarity index 100% rename from textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC.png rename to Mods/Core/Textures/things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC.png diff --git a/textures/things/building/ruins/ancientrazorwire/AncientRazorWireA.png b/Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireA.png similarity index 100% rename from textures/things/building/ruins/ancientrazorwire/AncientRazorWireA.png rename to Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireA.png diff --git a/textures/things/building/ruins/ancientrazorwire/AncientRazorWireB.png b/Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireB.png similarity index 100% rename from textures/things/building/ruins/ancientrazorwire/AncientRazorWireB.png rename to Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireB.png diff --git a/textures/things/building/ruins/ancientrazorwire/AncientRazorWireC.png b/Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireC.png similarity index 100% rename from textures/things/building/ruins/ancientrazorwire/AncientRazorWireC.png rename to Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireC.png diff --git a/textures/things/building/ruins/ancientrazorwire/AncientRazorWireD.png b/Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireD.png similarity index 100% rename from textures/things/building/ruins/ancientrazorwire/AncientRazorWireD.png rename to Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireD.png diff --git a/textures/things/building/ruins/ancientrazorwire/AncientRazorWireE.png b/Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireE.png similarity index 100% rename from textures/things/building/ruins/ancientrazorwire/AncientRazorWireE.png rename to Mods/Core/Textures/things/building/ruins/ancientrazorwire/AncientRazorWireE.png diff --git a/textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretA.png b/Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretA.png similarity index 100% rename from textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretA.png rename to Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretA.png diff --git a/textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretB.png b/Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretB.png similarity index 100% rename from textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretB.png rename to Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretB.png diff --git a/textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretC.png b/Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretC.png similarity index 100% rename from textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretC.png rename to Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretC.png diff --git a/textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretD.png b/Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretD.png similarity index 100% rename from textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretD.png rename to Mods/Core/Textures/things/building/ruins/ancientsecurityturret/AncientSecurityTurretD.png diff --git a/textures/things/building/ruins/ancienttanktrap/AncientTankTrapA.png b/Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapA.png similarity index 100% rename from textures/things/building/ruins/ancienttanktrap/AncientTankTrapA.png rename to Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapA.png diff --git a/textures/things/building/ruins/ancienttanktrap/AncientTankTrapB.png b/Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapB.png similarity index 100% rename from textures/things/building/ruins/ancienttanktrap/AncientTankTrapB.png rename to Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapB.png diff --git a/textures/things/building/ruins/ancienttanktrap/AncientTankTrapC.png b/Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapC.png similarity index 100% rename from textures/things/building/ruins/ancienttanktrap/AncientTankTrapC.png rename to Mods/Core/Textures/things/building/ruins/ancienttanktrap/AncientTankTrapC.png diff --git a/textures/things/building/ruins/concretebarrier.png b/Mods/Core/Textures/things/building/ruins/concretebarrier.png similarity index 100% rename from textures/things/building/ruins/concretebarrier.png rename to Mods/Core/Textures/things/building/ruins/concretebarrier.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI.png diff --git a/textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ.png b/Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ.png similarity index 100% rename from textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ.png diff --git a/textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA.png b/Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA.png similarity index 100% rename from textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA.png diff --git a/textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB.png b/Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB.png similarity index 100% rename from textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB.png diff --git a/textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC.png b/Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC.png similarity index 100% rename from textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC.png rename to Mods/Core/Textures/things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelA.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelA.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelA.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelA.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelB.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelB.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelB.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelB.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelC.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelC.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelC.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelC.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelD.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelD.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelD.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelD.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelE.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelE.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelE.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelE.png diff --git a/textures/things/building/ruins/giantwheel/GiantWheelF.png b/Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelF.png similarity index 100% rename from textures/things/building/ruins/giantwheel/GiantWheelF.png rename to Mods/Core/Textures/things/building/ruins/giantwheel/GiantWheelF.png diff --git a/textures/things/building/ruins/rustedengineblock/RustedEngineBlockA.png b/Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockA.png similarity index 100% rename from textures/things/building/ruins/rustedengineblock/RustedEngineBlockA.png rename to Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockA.png diff --git a/textures/things/building/ruins/rustedengineblock/RustedEngineBlockB.png b/Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockB.png similarity index 100% rename from textures/things/building/ruins/rustedengineblock/RustedEngineBlockB.png rename to Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockB.png diff --git a/textures/things/building/ruins/rustedengineblock/RustedEngineBlockC.png b/Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockC.png similarity index 100% rename from textures/things/building/ruins/rustedengineblock/RustedEngineBlockC.png rename to Mods/Core/Textures/things/building/ruins/rustedengineblock/RustedEngineBlockC.png diff --git a/textures/things/building/ruins/shoppingcart/ShoppingCartA.png b/Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartA.png similarity index 100% rename from textures/things/building/ruins/shoppingcart/ShoppingCartA.png rename to Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartA.png diff --git a/textures/things/building/ruins/shoppingcart/ShoppingCartB.png b/Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartB.png similarity index 100% rename from textures/things/building/ruins/shoppingcart/ShoppingCartB.png rename to Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartB.png diff --git a/textures/things/building/ruins/shoppingcart/ShoppingCartC.png b/Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartC.png similarity index 100% rename from textures/things/building/ruins/shoppingcart/ShoppingCartC.png rename to Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartC.png diff --git a/textures/things/building/ruins/shoppingcart/ShoppingCartD.png b/Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartD.png similarity index 100% rename from textures/things/building/ruins/shoppingcart/ShoppingCartD.png rename to Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartD.png diff --git a/textures/things/building/ruins/shoppingcart/ShoppingCartE.png b/Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartE.png similarity index 100% rename from textures/things/building/ruins/shoppingcart/ShoppingCartE.png rename to Mods/Core/Textures/things/building/ruins/shoppingcart/ShoppingCartE.png diff --git a/textures/things/building/ruins/wheel/WheelA.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelA.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelA.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelA.png diff --git a/textures/things/building/ruins/wheel/WheelB.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelB.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelB.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelB.png diff --git a/textures/things/building/ruins/wheel/WheelC.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelC.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelC.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelC.png diff --git a/textures/things/building/ruins/wheel/WheelD.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelD.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelD.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelD.png diff --git a/textures/things/building/ruins/wheel/WheelE.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelE.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelE.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelE.png diff --git a/textures/things/building/ruins/wheel/WheelF.png b/Mods/Core/Textures/things/building/ruins/wheel/WheelF.png similarity index 100% rename from textures/things/building/ruins/wheel/WheelF.png rename to Mods/Core/Textures/things/building/ruins/wheel/WheelF.png diff --git a/textures/things/building/security/IEDAntigrainWarhead.png b/Mods/Core/Textures/things/building/security/IEDAntigrainWarhead.png similarity index 100% rename from textures/things/building/security/IEDAntigrainWarhead.png rename to Mods/Core/Textures/things/building/security/IEDAntigrainWarhead.png diff --git a/textures/things/building/security/IEDDeadlife.png b/Mods/Core/Textures/things/building/security/IEDDeadlife.png similarity index 100% rename from textures/things/building/security/IEDDeadlife.png rename to Mods/Core/Textures/things/building/security/IEDDeadlife.png diff --git a/textures/things/building/security/IEDEMP.png b/Mods/Core/Textures/things/building/security/IEDEMP.png similarity index 100% rename from textures/things/building/security/IEDEMP.png rename to Mods/Core/Textures/things/building/security/IEDEMP.png diff --git a/textures/things/building/security/IEDFirefoam.png b/Mods/Core/Textures/things/building/security/IEDFirefoam.png similarity index 100% rename from textures/things/building/security/IEDFirefoam.png rename to Mods/Core/Textures/things/building/security/IEDFirefoam.png diff --git a/textures/things/building/security/IEDHighExplosive.png b/Mods/Core/Textures/things/building/security/IEDHighExplosive.png similarity index 100% rename from textures/things/building/security/IEDHighExplosive.png rename to Mods/Core/Textures/things/building/security/IEDHighExplosive.png diff --git a/textures/things/building/security/IEDIncendiary.png b/Mods/Core/Textures/things/building/security/IEDIncendiary.png similarity index 100% rename from textures/things/building/security/IEDIncendiary.png rename to Mods/Core/Textures/things/building/security/IEDIncendiary.png diff --git a/textures/things/building/security/IEDTox.png b/Mods/Core/Textures/things/building/security/IEDTox.png similarity index 100% rename from textures/things/building/security/IEDTox.png rename to Mods/Core/Textures/things/building/security/IEDTox.png diff --git a/textures/things/building/security/deadfallarmed.png b/Mods/Core/Textures/things/building/security/deadfallarmed.png similarity index 100% rename from textures/things/building/security/deadfallarmed.png rename to Mods/Core/Textures/things/building/security/deadfallarmed.png diff --git a/textures/things/building/security/deadfallunarmed.png b/Mods/Core/Textures/things/building/security/deadfallunarmed.png similarity index 100% rename from textures/things/building/security/deadfallunarmed.png rename to Mods/Core/Textures/things/building/security/deadfallunarmed.png diff --git a/textures/things/building/security/iedbomb.png b/Mods/Core/Textures/things/building/security/iedbomb.png similarity index 100% rename from textures/things/building/security/iedbomb.png rename to Mods/Core/Textures/things/building/security/iedbomb.png diff --git a/textures/things/building/security/turretimprovised.png b/Mods/Core/Textures/things/building/security/turretimprovised.png similarity index 100% rename from textures/things/building/security/turretimprovised.png rename to Mods/Core/Textures/things/building/security/turretimprovised.png diff --git a/textures/things/building/security/turretimprovised_top.png b/Mods/Core/Textures/things/building/security/turretimprovised_top.png similarity index 100% rename from textures/things/building/security/turretimprovised_top.png rename to Mods/Core/Textures/things/building/security/turretimprovised_top.png diff --git a/textures/things/building/security/turretmortarbase.png b/Mods/Core/Textures/things/building/security/turretmortarbase.png similarity index 100% rename from textures/things/building/security/turretmortarbase.png rename to Mods/Core/Textures/things/building/security/turretmortarbase.png diff --git a/textures/things/building/security/turretmortarbomb_top.png b/Mods/Core/Textures/things/building/security/turretmortarbomb_top.png similarity index 100% rename from textures/things/building/security/turretmortarbomb_top.png rename to Mods/Core/Textures/things/building/security/turretmortarbomb_top.png diff --git a/textures/things/building/security/turretmortaremp_top.png b/Mods/Core/Textures/things/building/security/turretmortaremp_top.png similarity index 100% rename from textures/things/building/security/turretmortaremp_top.png rename to Mods/Core/Textures/things/building/security/turretmortaremp_top.png diff --git a/textures/things/building/security/turretmortarincendiary_top.png b/Mods/Core/Textures/things/building/security/turretmortarincendiary_top.png similarity index 100% rename from textures/things/building/security/turretmortarincendiary_top.png rename to Mods/Core/Textures/things/building/security/turretmortarincendiary_top.png diff --git a/textures/things/building/ship/ShipCryptosleepCasket_east.png b/Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_east.png similarity index 100% rename from textures/things/building/ship/ShipCryptosleepCasket_east.png rename to Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_east.png diff --git a/textures/things/building/ship/ShipCryptosleepCasket_north.png b/Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_north.png similarity index 100% rename from textures/things/building/ship/ShipCryptosleepCasket_north.png rename to Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_north.png diff --git a/textures/things/building/ship/ShipCryptosleepCasket_south.png b/Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_south.png similarity index 100% rename from textures/things/building/ship/ShipCryptosleepCasket_south.png rename to Mods/Core/Textures/things/building/ship/ShipCryptosleepCasket_south.png diff --git a/textures/things/building/ship/shipbeam_back.png b/Mods/Core/Textures/things/building/ship/shipbeam_back.png similarity index 100% rename from textures/things/building/ship/shipbeam_back.png rename to Mods/Core/Textures/things/building/ship/shipbeam_back.png diff --git a/textures/things/building/ship/shipcomputercore_back.png b/Mods/Core/Textures/things/building/ship/shipcomputercore_back.png similarity index 100% rename from textures/things/building/ship/shipcomputercore_back.png rename to Mods/Core/Textures/things/building/ship/shipcomputercore_back.png diff --git a/textures/things/building/ship/shipcryptosleepcasket_back.png b/Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_back.png similarity index 100% rename from textures/things/building/ship/shipcryptosleepcasket_back.png rename to Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_back.png diff --git a/textures/things/building/ship/shipcryptosleepcasket_front.png b/Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_front.png similarity index 100% rename from textures/things/building/ship/shipcryptosleepcasket_front.png rename to Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_front.png diff --git a/textures/things/building/ship/shipcryptosleepcasket_side.png b/Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_side.png similarity index 100% rename from textures/things/building/ship/shipcryptosleepcasket_side.png rename to Mods/Core/Textures/things/building/ship/shipcryptosleepcasket_side.png diff --git a/textures/things/building/ship/shipengine_back.png b/Mods/Core/Textures/things/building/ship/shipengine_back.png similarity index 100% rename from textures/things/building/ship/shipengine_back.png rename to Mods/Core/Textures/things/building/ship/shipengine_back.png diff --git a/textures/things/building/ship/shipreactor_back.png b/Mods/Core/Textures/things/building/ship/shipreactor_back.png similarity index 100% rename from textures/things/building/ship/shipreactor_back.png rename to Mods/Core/Textures/things/building/ship/shipreactor_back.png diff --git a/textures/things/building/special/InfiniteChemreactor.png b/Mods/Core/Textures/things/building/special/InfiniteChemreactor.png similarity index 100% rename from textures/things/building/special/InfiniteChemreactor.png rename to Mods/Core/Textures/things/building/special/InfiniteChemreactor.png diff --git a/textures/things/building/special/VanometricPowerCell_east.png b/Mods/Core/Textures/things/building/special/VanometricPowerCell_east.png similarity index 100% rename from textures/things/building/special/VanometricPowerCell_east.png rename to Mods/Core/Textures/things/building/special/VanometricPowerCell_east.png diff --git a/textures/things/building/special/VanometricPowerCell_north.png b/Mods/Core/Textures/things/building/special/VanometricPowerCell_north.png similarity index 100% rename from textures/things/building/special/VanometricPowerCell_north.png rename to Mods/Core/Textures/things/building/special/VanometricPowerCell_north.png diff --git a/textures/things/filth/ash/asha.png b/Mods/Core/Textures/things/filth/ash/asha.png similarity index 100% rename from textures/things/filth/ash/asha.png rename to Mods/Core/Textures/things/filth/ash/asha.png diff --git a/textures/things/filth/ash/ashb.png b/Mods/Core/Textures/things/filth/ash/ashb.png similarity index 100% rename from textures/things/filth/ash/ashb.png rename to Mods/Core/Textures/things/filth/ash/ashb.png diff --git a/textures/things/filth/ash/ashc.png b/Mods/Core/Textures/things/filth/ash/ashc.png similarity index 100% rename from textures/things/filth/ash/ashc.png rename to Mods/Core/Textures/things/filth/ash/ashc.png diff --git a/textures/things/filth/corpsebile/bilea.png b/Mods/Core/Textures/things/filth/corpsebile/bilea.png similarity index 100% rename from textures/things/filth/corpsebile/bilea.png rename to Mods/Core/Textures/things/filth/corpsebile/bilea.png diff --git a/textures/things/filth/corpsebile/bileb.png b/Mods/Core/Textures/things/filth/corpsebile/bileb.png similarity index 100% rename from textures/things/filth/corpsebile/bileb.png rename to Mods/Core/Textures/things/filth/corpsebile/bileb.png diff --git a/textures/things/filth/corpsebile/bilec.png b/Mods/Core/Textures/things/filth/corpsebile/bilec.png similarity index 100% rename from textures/things/filth/corpsebile/bilec.png rename to Mods/Core/Textures/things/filth/corpsebile/bilec.png diff --git a/textures/things/filth/grainy/grainya.png b/Mods/Core/Textures/things/filth/grainy/grainya.png similarity index 100% rename from textures/things/filth/grainy/grainya.png rename to Mods/Core/Textures/things/filth/grainy/grainya.png diff --git a/textures/things/filth/liquidfuel/liquidfuela.png b/Mods/Core/Textures/things/filth/liquidfuel/liquidfuela.png similarity index 100% rename from textures/things/filth/liquidfuel/liquidfuela.png rename to Mods/Core/Textures/things/filth/liquidfuel/liquidfuela.png diff --git a/textures/things/filth/poolsoft/poolsofta.png b/Mods/Core/Textures/things/filth/poolsoft/poolsofta.png similarity index 100% rename from textures/things/filth/poolsoft/poolsofta.png rename to Mods/Core/Textures/things/filth/poolsoft/poolsofta.png diff --git a/textures/things/filth/poolsoft/poolsoftb.png b/Mods/Core/Textures/things/filth/poolsoft/poolsoftb.png similarity index 100% rename from textures/things/filth/poolsoft/poolsoftb.png rename to Mods/Core/Textures/things/filth/poolsoft/poolsoftb.png diff --git a/textures/things/filth/poolsoft/poolsoftc.png b/Mods/Core/Textures/things/filth/poolsoft/poolsoftc.png similarity index 100% rename from textures/things/filth/poolsoft/poolsoftc.png rename to Mods/Core/Textures/things/filth/poolsoft/poolsoftc.png diff --git a/textures/things/filth/rubblebuilding/slagbitsa.png b/Mods/Core/Textures/things/filth/rubblebuilding/slagbitsa.png similarity index 100% rename from textures/things/filth/rubblebuilding/slagbitsa.png rename to Mods/Core/Textures/things/filth/rubblebuilding/slagbitsa.png diff --git a/textures/things/filth/rubblerock/rubblea.png b/Mods/Core/Textures/things/filth/rubblerock/rubblea.png similarity index 100% rename from textures/things/filth/rubblerock/rubblea.png rename to Mods/Core/Textures/things/filth/rubblerock/rubblea.png diff --git a/textures/things/filth/rubblesandbags/sandbagsa.png b/Mods/Core/Textures/things/filth/rubblesandbags/sandbagsa.png similarity index 100% rename from textures/things/filth/rubblesandbags/sandbagsa.png rename to Mods/Core/Textures/things/filth/rubblesandbags/sandbagsa.png diff --git a/textures/things/filth/rubbleslag/slagbitsa.png b/Mods/Core/Textures/things/filth/rubbleslag/slagbitsa.png similarity index 100% rename from textures/things/filth/rubbleslag/slagbitsa.png rename to Mods/Core/Textures/things/filth/rubbleslag/slagbitsa.png diff --git a/textures/things/filth/spatter/spattera.png b/Mods/Core/Textures/things/filth/spatter/spattera.png similarity index 100% rename from textures/things/filth/spatter/spattera.png rename to Mods/Core/Textures/things/filth/spatter/spattera.png diff --git a/textures/things/filth/spatter/spatterb.png b/Mods/Core/Textures/things/filth/spatter/spatterb.png similarity index 100% rename from textures/things/filth/spatter/spatterb.png rename to Mods/Core/Textures/things/filth/spatter/spatterb.png diff --git a/textures/things/filth/spatter/spatterc.png b/Mods/Core/Textures/things/filth/spatter/spatterc.png similarity index 100% rename from textures/things/filth/spatter/spatterc.png rename to Mods/Core/Textures/things/filth/spatter/spatterc.png diff --git a/textures/things/gas/puff.png b/Mods/Core/Textures/things/gas/puff.png similarity index 100% rename from textures/things/gas/puff.png rename to Mods/Core/Textures/things/gas/puff.png diff --git a/textures/things/item/artifact/PsychicAnimalPulser.png b/Mods/Core/Textures/things/item/artifact/PsychicAnimalPulser.png similarity index 100% rename from textures/things/item/artifact/PsychicAnimalPulser.png rename to Mods/Core/Textures/things/item/artifact/PsychicAnimalPulser.png diff --git a/textures/things/item/artifact/PsychicInsanityLance.png b/Mods/Core/Textures/things/item/artifact/PsychicInsanityLance.png similarity index 100% rename from textures/things/item/artifact/PsychicInsanityLance.png rename to Mods/Core/Textures/things/item/artifact/PsychicInsanityLance.png diff --git a/textures/things/item/artifact/PsychicShockLance.png b/Mods/Core/Textures/things/item/artifact/PsychicShockLance.png similarity index 100% rename from textures/things/item/artifact/PsychicShockLance.png rename to Mods/Core/Textures/things/item/artifact/PsychicShockLance.png diff --git a/textures/things/item/artifact/PsychicSoothePulser.png b/Mods/Core/Textures/things/item/artifact/PsychicSoothePulser.png similarity index 100% rename from textures/things/item/artifact/PsychicSoothePulser.png rename to Mods/Core/Textures/things/item/artifact/PsychicSoothePulser.png diff --git a/textures/things/item/bodypart/artificialorgan.png b/Mods/Core/Textures/things/item/bodypart/artificialorgan.png similarity index 100% rename from textures/things/item/bodypart/artificialorgan.png rename to Mods/Core/Textures/things/item/bodypart/artificialorgan.png diff --git a/textures/things/item/bodypart/organ.png b/Mods/Core/Textures/things/item/bodypart/organ.png similarity index 100% rename from textures/things/item/bodypart/organ.png rename to Mods/Core/Textures/things/item/bodypart/organ.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowA.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowA.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowA.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowA.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowB.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowB.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowB.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowB.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowC.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowC.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowC.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowC.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowD.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowD.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowD.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowD.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowE.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowE.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowE.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowE.png diff --git a/textures/things/item/chunk/alt_chunkstone/RockLowF.png b/Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowF.png similarity index 100% rename from textures/things/item/chunk/alt_chunkstone/RockLowF.png rename to Mods/Core/Textures/things/item/chunk/alt_chunkstone/RockLowF.png diff --git a/textures/things/item/chunk/chunkslag/MetalDebrisA.png b/Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisA.png similarity index 100% rename from textures/things/item/chunk/chunkslag/MetalDebrisA.png rename to Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisA.png diff --git a/textures/things/item/chunk/chunkslag/MetalDebrisB.png b/Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisB.png similarity index 100% rename from textures/things/item/chunk/chunkslag/MetalDebrisB.png rename to Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisB.png diff --git a/textures/things/item/chunk/chunkslag/MetalDebrisC.png b/Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisC.png similarity index 100% rename from textures/things/item/chunk/chunkslag/MetalDebrisC.png rename to Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisC.png diff --git a/textures/things/item/chunk/chunkslag/MetalDebrisD.png b/Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisD.png similarity index 100% rename from textures/things/item/chunk/chunkslag/MetalDebrisD.png rename to Mods/Core/Textures/things/item/chunk/chunkslag/MetalDebrisD.png diff --git a/textures/things/item/chunk/chunkstone/RockLowA.png b/Mods/Core/Textures/things/item/chunk/chunkstone/RockLowA.png similarity index 100% rename from textures/things/item/chunk/chunkstone/RockLowA.png rename to Mods/Core/Textures/things/item/chunk/chunkstone/RockLowA.png diff --git a/textures/things/item/chunk/chunkstone/RockLowB.png b/Mods/Core/Textures/things/item/chunk/chunkstone/RockLowB.png similarity index 100% rename from textures/things/item/chunk/chunkstone/RockLowB.png rename to Mods/Core/Textures/things/item/chunk/chunkstone/RockLowB.png diff --git a/textures/things/item/chunk/chunkstone/RockLowC.png b/Mods/Core/Textures/things/item/chunk/chunkstone/RockLowC.png similarity index 100% rename from textures/things/item/chunk/chunkstone/RockLowC.png rename to Mods/Core/Textures/things/item/chunk/chunkstone/RockLowC.png diff --git a/textures/things/item/chunk/chunkstone/RockLowD.png b/Mods/Core/Textures/things/item/chunk/chunkstone/RockLowD.png similarity index 100% rename from textures/things/item/chunk/chunkstone/RockLowD.png rename to Mods/Core/Textures/things/item/chunk/chunkstone/RockLowD.png diff --git a/textures/things/item/drug/ambrosia/Ambrosia_a.png b/Mods/Core/Textures/things/item/drug/ambrosia/Ambrosia_a.png similarity index 100% rename from textures/things/item/drug/ambrosia/Ambrosia_a.png rename to Mods/Core/Textures/things/item/drug/ambrosia/Ambrosia_a.png diff --git a/textures/things/item/drug/ambrosia/Ambrosia_b.png b/Mods/Core/Textures/things/item/drug/ambrosia/Ambrosia_b.png similarity index 100% rename from textures/things/item/drug/ambrosia/Ambrosia_b.png rename to Mods/Core/Textures/things/item/drug/ambrosia/Ambrosia_b.png diff --git a/textures/things/item/drug/beer/Beer_a.png b/Mods/Core/Textures/things/item/drug/beer/Beer_a.png similarity index 100% rename from textures/things/item/drug/beer/Beer_a.png rename to Mods/Core/Textures/things/item/drug/beer/Beer_a.png diff --git a/textures/things/item/drug/beer/Beer_b.png b/Mods/Core/Textures/things/item/drug/beer/Beer_b.png similarity index 100% rename from textures/things/item/drug/beer/Beer_b.png rename to Mods/Core/Textures/things/item/drug/beer/Beer_b.png diff --git a/textures/things/item/drug/beer/Beer_c.png b/Mods/Core/Textures/things/item/drug/beer/Beer_c.png similarity index 100% rename from textures/things/item/drug/beer/Beer_c.png rename to Mods/Core/Textures/things/item/drug/beer/Beer_c.png diff --git a/textures/things/item/drug/flake/flake_a.png b/Mods/Core/Textures/things/item/drug/flake/flake_a.png similarity index 100% rename from textures/things/item/drug/flake/flake_a.png rename to Mods/Core/Textures/things/item/drug/flake/flake_a.png diff --git a/textures/things/item/drug/flake/flake_b.png b/Mods/Core/Textures/things/item/drug/flake/flake_b.png similarity index 100% rename from textures/things/item/drug/flake/flake_b.png rename to Mods/Core/Textures/things/item/drug/flake/flake_b.png diff --git a/textures/things/item/drug/flake/flake_c.png b/Mods/Core/Textures/things/item/drug/flake/flake_c.png similarity index 100% rename from textures/things/item/drug/flake/flake_c.png rename to Mods/Core/Textures/things/item/drug/flake/flake_c.png diff --git a/textures/things/item/drug/gojuice/GoJuice_a.png b/Mods/Core/Textures/things/item/drug/gojuice/GoJuice_a.png similarity index 100% rename from textures/things/item/drug/gojuice/GoJuice_a.png rename to Mods/Core/Textures/things/item/drug/gojuice/GoJuice_a.png diff --git a/textures/things/item/drug/gojuice/GoJuice_b.png b/Mods/Core/Textures/things/item/drug/gojuice/GoJuice_b.png similarity index 100% rename from textures/things/item/drug/gojuice/GoJuice_b.png rename to Mods/Core/Textures/things/item/drug/gojuice/GoJuice_b.png diff --git a/textures/things/item/drug/joint/Joint_a.png b/Mods/Core/Textures/things/item/drug/joint/Joint_a.png similarity index 100% rename from textures/things/item/drug/joint/Joint_a.png rename to Mods/Core/Textures/things/item/drug/joint/Joint_a.png diff --git a/textures/things/item/drug/joint/Joint_b.png b/Mods/Core/Textures/things/item/drug/joint/Joint_b.png similarity index 100% rename from textures/things/item/drug/joint/Joint_b.png rename to Mods/Core/Textures/things/item/drug/joint/Joint_b.png diff --git a/textures/things/item/drug/joint/Joint_c.png b/Mods/Core/Textures/things/item/drug/joint/Joint_c.png similarity index 100% rename from textures/things/item/drug/joint/Joint_c.png rename to Mods/Core/Textures/things/item/drug/joint/Joint_c.png diff --git a/textures/things/item/drug/luciferium/Luciferium_a.png b/Mods/Core/Textures/things/item/drug/luciferium/Luciferium_a.png similarity index 100% rename from textures/things/item/drug/luciferium/Luciferium_a.png rename to Mods/Core/Textures/things/item/drug/luciferium/Luciferium_a.png diff --git a/textures/things/item/drug/luciferium/Luciferium_b.png b/Mods/Core/Textures/things/item/drug/luciferium/Luciferium_b.png similarity index 100% rename from textures/things/item/drug/luciferium/Luciferium_b.png rename to Mods/Core/Textures/things/item/drug/luciferium/Luciferium_b.png diff --git a/textures/things/item/drug/penoxycyline/Penoxycyline_a.png b/Mods/Core/Textures/things/item/drug/penoxycyline/Penoxycyline_a.png similarity index 100% rename from textures/things/item/drug/penoxycyline/Penoxycyline_a.png rename to Mods/Core/Textures/things/item/drug/penoxycyline/Penoxycyline_a.png diff --git a/textures/things/item/drug/penoxycyline/Penoxycyline_b.png b/Mods/Core/Textures/things/item/drug/penoxycyline/Penoxycyline_b.png similarity index 100% rename from textures/things/item/drug/penoxycyline/Penoxycyline_b.png rename to Mods/Core/Textures/things/item/drug/penoxycyline/Penoxycyline_b.png diff --git a/textures/things/item/drug/tea/Tea_a.png b/Mods/Core/Textures/things/item/drug/tea/Tea_a.png similarity index 100% rename from textures/things/item/drug/tea/Tea_a.png rename to Mods/Core/Textures/things/item/drug/tea/Tea_a.png diff --git a/textures/things/item/drug/tea/Tea_b.png b/Mods/Core/Textures/things/item/drug/tea/Tea_b.png similarity index 100% rename from textures/things/item/drug/tea/Tea_b.png rename to Mods/Core/Textures/things/item/drug/tea/Tea_b.png diff --git a/textures/things/item/drug/tea/Tea_c.png b/Mods/Core/Textures/things/item/drug/tea/Tea_c.png similarity index 100% rename from textures/things/item/drug/tea/Tea_c.png rename to Mods/Core/Textures/things/item/drug/tea/Tea_c.png diff --git a/textures/things/item/drug/wakeup/WakeUp_a.png b/Mods/Core/Textures/things/item/drug/wakeup/WakeUp_a.png similarity index 100% rename from textures/things/item/drug/wakeup/WakeUp_a.png rename to Mods/Core/Textures/things/item/drug/wakeup/WakeUp_a.png diff --git a/textures/things/item/drug/wakeup/WakeUp_b.png b/Mods/Core/Textures/things/item/drug/wakeup/WakeUp_b.png similarity index 100% rename from textures/things/item/drug/wakeup/WakeUp_b.png rename to Mods/Core/Textures/things/item/drug/wakeup/WakeUp_b.png diff --git a/textures/things/item/drug/yayo/Yayo_a.png b/Mods/Core/Textures/things/item/drug/yayo/Yayo_a.png similarity index 100% rename from textures/things/item/drug/yayo/Yayo_a.png rename to Mods/Core/Textures/things/item/drug/yayo/Yayo_a.png diff --git a/textures/things/item/drug/yayo/Yayo_b.png b/Mods/Core/Textures/things/item/drug/yayo/Yayo_b.png similarity index 100% rename from textures/things/item/drug/yayo/Yayo_b.png rename to Mods/Core/Textures/things/item/drug/yayo/Yayo_b.png diff --git a/textures/things/item/drug/yayo/Yayo_c.png b/Mods/Core/Textures/things/item/drug/yayo/Yayo_c.png similarity index 100% rename from textures/things/item/drug/yayo/Yayo_c.png rename to Mods/Core/Textures/things/item/drug/yayo/Yayo_c.png diff --git a/textures/things/item/dye/Dye_a.png b/Mods/Core/Textures/things/item/dye/Dye_a.png similarity index 100% rename from textures/things/item/dye/Dye_a.png rename to Mods/Core/Textures/things/item/dye/Dye_a.png diff --git a/textures/things/item/dye/Dye_b.png b/Mods/Core/Textures/things/item/dye/Dye_b.png similarity index 100% rename from textures/things/item/dye/Dye_b.png rename to Mods/Core/Textures/things/item/dye/Dye_b.png diff --git a/textures/things/item/dye/Dye_c.png b/Mods/Core/Textures/things/item/dye/Dye_c.png similarity index 100% rename from textures/things/item/dye/Dye_c.png rename to Mods/Core/Textures/things/item/dye/Dye_c.png diff --git a/textures/things/item/equipment/weaponmelee/Axe.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Axe.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Axe.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Axe.png diff --git a/textures/things/item/equipment/weaponmelee/BreachAxe.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/BreachAxe.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/BreachAxe.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/BreachAxe.png diff --git a/textures/things/item/equipment/weaponmelee/Club.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Club.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Club.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Club.png diff --git a/textures/things/item/equipment/weaponmelee/Gladius.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Gladius.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Gladius.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Gladius.png diff --git a/textures/things/item/equipment/weaponmelee/Ikwa.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Ikwa.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Ikwa.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Ikwa.png diff --git a/textures/things/item/equipment/weaponmelee/Knife.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Knife.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Knife.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Knife.png diff --git a/textures/things/item/equipment/weaponmelee/Longsword.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Longsword.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Longsword.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Longsword.png diff --git a/textures/things/item/equipment/weaponmelee/Mace.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Mace.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Mace.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Mace.png diff --git a/textures/things/item/equipment/weaponmelee/Monosword.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Monosword.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Monosword.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Monosword.png diff --git a/textures/things/item/equipment/weaponmelee/PlasmaSword.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/PlasmaSword.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/PlasmaSword.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/PlasmaSword.png diff --git a/textures/things/item/equipment/weaponmelee/PsyfocusStaff.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/PsyfocusStaff.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/PsyfocusStaff.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/PsyfocusStaff.png diff --git a/textures/things/item/equipment/weaponmelee/Spear.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Spear.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Spear.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Spear.png diff --git a/textures/things/item/equipment/weaponmelee/Warhammer.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/Warhammer.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/Warhammer.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/Warhammer.png diff --git a/textures/things/item/equipment/weaponmelee/ZeusHammer.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/ZeusHammer.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/ZeusHammer.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/ZeusHammer.png diff --git a/textures/things/item/equipment/weaponmelee/shiv.png b/Mods/Core/Textures/things/item/equipment/weaponmelee/shiv.png similarity index 100% rename from textures/things/item/equipment/weaponmelee/shiv.png rename to Mods/Core/Textures/things/item/equipment/weaponmelee/shiv.png diff --git a/textures/things/item/equipment/weaponranged/AssaultRifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/AssaultRifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/AssaultRifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/AssaultRifle.png diff --git a/textures/things/item/equipment/weaponranged/Autopistol.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Autopistol.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Autopistol.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Autopistol.png diff --git a/textures/things/item/equipment/weaponranged/BeamGraser.png b/Mods/Core/Textures/things/item/equipment/weaponranged/BeamGraser.png similarity index 100% rename from textures/things/item/equipment/weaponranged/BeamGraser.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/BeamGraser.png diff --git a/textures/things/item/equipment/weaponranged/BoltActionRifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/BoltActionRifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/BoltActionRifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/BoltActionRifle.png diff --git a/textures/things/item/equipment/weaponranged/BowGreat.png b/Mods/Core/Textures/things/item/equipment/weaponranged/BowGreat.png similarity index 100% rename from textures/things/item/equipment/weaponranged/BowGreat.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/BowGreat.png diff --git a/textures/things/item/equipment/weaponranged/BowRecurve.png b/Mods/Core/Textures/things/item/equipment/weaponranged/BowRecurve.png similarity index 100% rename from textures/things/item/equipment/weaponranged/BowRecurve.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/BowRecurve.png diff --git a/textures/things/item/equipment/weaponranged/BowShort.png b/Mods/Core/Textures/things/item/equipment/weaponranged/BowShort.png similarity index 100% rename from textures/things/item/equipment/weaponranged/BowShort.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/BowShort.png diff --git a/textures/things/item/equipment/weaponranged/ChainShotgun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChainShotgun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChainShotgun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChainShotgun.png diff --git a/textures/things/item/equipment/weaponranged/ChargeBlasterHeavy.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterHeavy.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChargeBlasterHeavy.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterHeavy.png diff --git a/textures/things/item/equipment/weaponranged/ChargeBlasterLight.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterLight.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChargeBlasterLight.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterLight.png diff --git a/textures/things/item/equipment/weaponranged/ChargeBlasterTurret.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterTurret.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChargeBlasterTurret.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChargeBlasterTurret.png diff --git a/textures/things/item/equipment/weaponranged/ChargeLance.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChargeLance.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChargeLance.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChargeLance.png diff --git a/textures/things/item/equipment/weaponranged/ChargeRifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ChargeRifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ChargeRifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ChargeRifle.png diff --git a/textures/things/item/equipment/weaponranged/DoomsdayLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/DoomsdayLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/DoomsdayLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/DoomsdayLauncher.png diff --git a/textures/things/item/equipment/weaponranged/EMPGrenades.png b/Mods/Core/Textures/things/item/equipment/weaponranged/EMPGrenades.png similarity index 100% rename from textures/things/item/equipment/weaponranged/EMPGrenades.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/EMPGrenades.png diff --git a/textures/things/item/equipment/weaponranged/EMPLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/EMPLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/EMPLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/EMPLauncher.png diff --git a/textures/things/item/equipment/weaponranged/Flamebow.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Flamebow.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Flamebow.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Flamebow.png diff --git a/textures/things/item/equipment/weaponranged/Flamethrower.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Flamethrower.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Flamethrower.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Flamethrower.png diff --git a/textures/things/item/equipment/weaponranged/Grenades.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Grenades.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Grenades.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Grenades.png diff --git a/textures/things/item/equipment/weaponranged/HeavySMG.png b/Mods/Core/Textures/things/item/equipment/weaponranged/HeavySMG.png similarity index 100% rename from textures/things/item/equipment/weaponranged/HeavySMG.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/HeavySMG.png diff --git a/textures/things/item/equipment/weaponranged/HellcatRifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/HellcatRifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/HellcatRifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/HellcatRifle.png diff --git a/textures/things/item/equipment/weaponranged/HellsphereCannon.png b/Mods/Core/Textures/things/item/equipment/weaponranged/HellsphereCannon.png similarity index 100% rename from textures/things/item/equipment/weaponranged/HellsphereCannon.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/HellsphereCannon.png diff --git a/textures/things/item/equipment/weaponranged/IncendiaryLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/IncendiaryLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/IncendiaryLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/IncendiaryLauncher.png diff --git a/textures/things/item/equipment/weaponranged/InfernoCannon.png b/Mods/Core/Textures/things/item/equipment/weaponranged/InfernoCannon.png similarity index 100% rename from textures/things/item/equipment/weaponranged/InfernoCannon.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/InfernoCannon.png diff --git a/textures/things/item/equipment/weaponranged/LMG.png b/Mods/Core/Textures/things/item/equipment/weaponranged/LMG.png similarity index 100% rename from textures/things/item/equipment/weaponranged/LMG.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/LMG.png diff --git a/textures/things/item/equipment/weaponranged/MachinePistol.png b/Mods/Core/Textures/things/item/equipment/weaponranged/MachinePistol.png similarity index 100% rename from textures/things/item/equipment/weaponranged/MachinePistol.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/MachinePistol.png diff --git a/textures/things/item/equipment/weaponranged/MiniFlameblaster.png b/Mods/Core/Textures/things/item/equipment/weaponranged/MiniFlameblaster.png similarity index 100% rename from textures/things/item/equipment/weaponranged/MiniFlameblaster.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/MiniFlameblaster.png diff --git a/textures/things/item/equipment/weaponranged/MiniShotgun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/MiniShotgun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/MiniShotgun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/MiniShotgun.png diff --git a/textures/things/item/equipment/weaponranged/Minigun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Minigun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Minigun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Minigun.png diff --git a/textures/things/item/equipment/weaponranged/Molotov.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Molotov.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Molotov.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Molotov.png diff --git a/textures/things/item/equipment/weaponranged/NeedleGun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/NeedleGun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/NeedleGun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/NeedleGun.png diff --git a/textures/things/item/equipment/weaponranged/NeedleLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/NeedleLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/NeedleLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/NeedleLauncher.png diff --git a/textures/things/item/equipment/weaponranged/NerveSpiker.png b/Mods/Core/Textures/things/item/equipment/weaponranged/NerveSpiker.png similarity index 100% rename from textures/things/item/equipment/weaponranged/NerveSpiker.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/NerveSpiker.png diff --git a/textures/things/item/equipment/weaponranged/Pilum.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Pilum.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Pilum.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Pilum.png diff --git a/textures/things/item/equipment/weaponranged/Revolver.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Revolver.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Revolver.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Revolver.png diff --git a/textures/things/item/equipment/weaponranged/RocketLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/RocketLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/RocketLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/RocketLauncher.png diff --git a/textures/things/item/equipment/weaponranged/Shotgun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Shotgun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Shotgun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Shotgun.png diff --git a/textures/things/item/equipment/weaponranged/Slugthrower.png b/Mods/Core/Textures/things/item/equipment/weaponranged/Slugthrower.png similarity index 100% rename from textures/things/item/equipment/weaponranged/Slugthrower.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/Slugthrower.png diff --git a/textures/things/item/equipment/weaponranged/SmallSlugGun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/SmallSlugGun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/SmallSlugGun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/SmallSlugGun.png diff --git a/textures/things/item/equipment/weaponranged/SmokeLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/SmokeLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/SmokeLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/SmokeLauncher.png diff --git a/textures/things/item/equipment/weaponranged/SniperRifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/SniperRifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/SniperRifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/SniperRifle.png diff --git a/textures/things/item/equipment/weaponranged/SpinerGun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/SpinerGun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/SpinerGun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/SpinerGun.png diff --git a/textures/things/item/equipment/weaponranged/ThumpCannon.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ThumpCannon.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ThumpCannon.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ThumpCannon.png diff --git a/textures/things/item/equipment/weaponranged/ToxGrenades.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ToxGrenades.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ToxGrenades.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ToxGrenades.png diff --git a/textures/things/item/equipment/weaponranged/ToxbombLauncher.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ToxbombLauncher.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ToxbombLauncher.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ToxbombLauncher.png diff --git a/textures/things/item/equipment/weaponranged/ToxicNeedleGun.png b/Mods/Core/Textures/things/item/equipment/weaponranged/ToxicNeedleGun.png similarity index 100% rename from textures/things/item/equipment/weaponranged/ToxicNeedleGun.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/ToxicNeedleGun.png diff --git a/textures/things/item/equipment/weaponranged/pistol.png b/Mods/Core/Textures/things/item/equipment/weaponranged/pistol.png similarity index 100% rename from textures/things/item/equipment/weaponranged/pistol.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/pistol.png diff --git a/textures/things/item/equipment/weaponranged/survivalrifle.png b/Mods/Core/Textures/things/item/equipment/weaponranged/survivalrifle.png similarity index 100% rename from textures/things/item/equipment/weaponranged/survivalrifle.png rename to Mods/Core/Textures/things/item/equipment/weaponranged/survivalrifle.png diff --git a/textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster.png b/Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster.png similarity index 100% rename from textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster.png rename to Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster.png diff --git a/textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east.png b/Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east.png similarity index 100% rename from textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east.png rename to Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east.png diff --git a/textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north.png b/Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north.png similarity index 100% rename from textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north.png rename to Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north.png diff --git a/textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south.png b/Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south.png similarity index 100% rename from textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south.png rename to Mods/Core/Textures/things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south.png diff --git a/textures/things/item/gauranlenseed/GauranlenSeed_a.png b/Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_a.png similarity index 100% rename from textures/things/item/gauranlenseed/GauranlenSeed_a.png rename to Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_a.png diff --git a/textures/things/item/gauranlenseed/GauranlenSeed_b.png b/Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_b.png similarity index 100% rename from textures/things/item/gauranlenseed/GauranlenSeed_b.png rename to Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_b.png diff --git a/textures/things/item/gauranlenseed/GauranlenSeed_c.png b/Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_c.png similarity index 100% rename from textures/things/item/gauranlenseed/GauranlenSeed_c.png rename to Mods/Core/Textures/things/item/gauranlenseed/GauranlenSeed_c.png diff --git a/textures/things/item/implant/implant.png b/Mods/Core/Textures/things/item/implant/implant.png similarity index 100% rename from textures/things/item/implant/implant.png rename to Mods/Core/Textures/things/item/implant/implant.png diff --git a/textures/things/item/meal/fine.png b/Mods/Core/Textures/things/item/meal/fine.png similarity index 100% rename from textures/things/item/meal/fine.png rename to Mods/Core/Textures/things/item/meal/fine.png diff --git a/textures/things/item/meal/lavish.png b/Mods/Core/Textures/things/item/meal/lavish.png similarity index 100% rename from textures/things/item/meal/lavish.png rename to Mods/Core/Textures/things/item/meal/lavish.png diff --git a/textures/things/item/meal/nutrientpaste.png b/Mods/Core/Textures/things/item/meal/nutrientpaste.png similarity index 100% rename from textures/things/item/meal/nutrientpaste.png rename to Mods/Core/Textures/things/item/meal/nutrientpaste.png diff --git a/textures/things/item/meal/simple.png b/Mods/Core/Textures/things/item/meal/simple.png similarity index 100% rename from textures/things/item/meal/simple.png rename to Mods/Core/Textures/things/item/meal/simple.png diff --git a/textures/things/item/meal/survivalpack.png b/Mods/Core/Textures/things/item/meal/survivalpack.png similarity index 100% rename from textures/things/item/meal/survivalpack.png rename to Mods/Core/Textures/things/item/meal/survivalpack.png diff --git a/textures/things/item/minified/CrateFront.png b/Mods/Core/Textures/things/item/minified/CrateFront.png similarity index 100% rename from textures/things/item/minified/CrateFront.png rename to Mods/Core/Textures/things/item/minified/CrateFront.png diff --git a/textures/things/item/poluxseed/PoluxSeed_a.png b/Mods/Core/Textures/things/item/poluxseed/PoluxSeed_a.png similarity index 100% rename from textures/things/item/poluxseed/PoluxSeed_a.png rename to Mods/Core/Textures/things/item/poluxseed/PoluxSeed_a.png diff --git a/textures/things/item/poluxseed/PoluxSeed_b.png b/Mods/Core/Textures/things/item/poluxseed/PoluxSeed_b.png similarity index 100% rename from textures/things/item/poluxseed/PoluxSeed_b.png rename to Mods/Core/Textures/things/item/poluxseed/PoluxSeed_b.png diff --git a/textures/things/item/poluxseed/PoluxSeed_c.png b/Mods/Core/Textures/things/item/poluxseed/PoluxSeed_c.png similarity index 100% rename from textures/things/item/poluxseed/PoluxSeed_c.png rename to Mods/Core/Textures/things/item/poluxseed/PoluxSeed_c.png diff --git a/textures/things/item/relic/RelicInertArk.png b/Mods/Core/Textures/things/item/relic/RelicInertArk.png similarity index 100% rename from textures/things/item/relic/RelicInertArk.png rename to Mods/Core/Textures/things/item/relic/RelicInertArk.png diff --git a/textures/things/item/relic/RelicInertBox.png b/Mods/Core/Textures/things/item/relic/RelicInertBox.png similarity index 100% rename from textures/things/item/relic/RelicInertBox.png rename to Mods/Core/Textures/things/item/relic/RelicInertBox.png diff --git a/textures/things/item/relic/RelicInertCube.png b/Mods/Core/Textures/things/item/relic/RelicInertCube.png similarity index 100% rename from textures/things/item/relic/RelicInertCube.png rename to Mods/Core/Textures/things/item/relic/RelicInertCube.png diff --git a/textures/things/item/relic/RelicInertCup.png b/Mods/Core/Textures/things/item/relic/RelicInertCup.png similarity index 100% rename from textures/things/item/relic/RelicInertCup.png rename to Mods/Core/Textures/things/item/relic/RelicInertCup.png diff --git a/textures/things/item/relic/RelicInertFragment.png b/Mods/Core/Textures/things/item/relic/RelicInertFragment.png similarity index 100% rename from textures/things/item/relic/RelicInertFragment.png rename to Mods/Core/Textures/things/item/relic/RelicInertFragment.png diff --git a/textures/things/item/relic/RelicInertPendant.png b/Mods/Core/Textures/things/item/relic/RelicInertPendant.png similarity index 100% rename from textures/things/item/relic/RelicInertPendant.png rename to Mods/Core/Textures/things/item/relic/RelicInertPendant.png diff --git a/textures/things/item/relic/RelicInertSwordHandle.png b/Mods/Core/Textures/things/item/relic/RelicInertSwordHandle.png similarity index 100% rename from textures/things/item/relic/RelicInertSwordHandle.png rename to Mods/Core/Textures/things/item/relic/RelicInertSwordHandle.png diff --git a/textures/things/item/relic/RelicInertTablet.png b/Mods/Core/Textures/things/item/relic/RelicInertTablet.png similarity index 100% rename from textures/things/item/relic/RelicInertTablet.png rename to Mods/Core/Textures/things/item/relic/RelicInertTablet.png diff --git a/textures/things/item/resource/ArchiteCapsule.png b/Mods/Core/Textures/things/item/resource/ArchiteCapsule.png similarity index 100% rename from textures/things/item/resource/ArchiteCapsule.png rename to Mods/Core/Textures/things/item/resource/ArchiteCapsule.png diff --git a/textures/things/item/resource/Chemfuel.png b/Mods/Core/Textures/things/item/resource/Chemfuel.png similarity index 100% rename from textures/things/item/resource/Chemfuel.png rename to Mods/Core/Textures/things/item/resource/Chemfuel.png diff --git a/textures/things/item/resource/DeathrestCapacitySerum.png b/Mods/Core/Textures/things/item/resource/DeathrestCapacitySerum.png similarity index 100% rename from textures/things/item/resource/DeathrestCapacitySerum.png rename to Mods/Core/Textures/things/item/resource/DeathrestCapacitySerum.png diff --git a/textures/things/item/resource/Milk.png b/Mods/Core/Textures/things/item/resource/Milk.png similarity index 100% rename from textures/things/item/resource/Milk.png rename to Mods/Core/Textures/things/item/resource/Milk.png diff --git a/textures/things/item/resource/NanostructuringChip.png b/Mods/Core/Textures/things/item/resource/NanostructuringChip.png similarity index 100% rename from textures/things/item/resource/NanostructuringChip.png rename to Mods/Core/Textures/things/item/resource/NanostructuringChip.png diff --git a/textures/things/item/resource/PowerfocusChip.png b/Mods/Core/Textures/things/item/resource/PowerfocusChip.png similarity index 100% rename from textures/things/item/resource/PowerfocusChip.png rename to Mods/Core/Textures/things/item/resource/PowerfocusChip.png diff --git a/textures/things/item/resource/SignalChip.png b/Mods/Core/Textures/things/item/resource/SignalChip.png similarity index 100% rename from textures/things/item/resource/SignalChip.png rename to Mods/Core/Textures/things/item/resource/SignalChip.png diff --git a/textures/things/item/resource/SubcoreBasic.png b/Mods/Core/Textures/things/item/resource/SubcoreBasic.png similarity index 100% rename from textures/things/item/resource/SubcoreBasic.png rename to Mods/Core/Textures/things/item/resource/SubcoreBasic.png diff --git a/textures/things/item/resource/SubcoreHigh.png b/Mods/Core/Textures/things/item/resource/SubcoreHigh.png similarity index 100% rename from textures/things/item/resource/SubcoreHigh.png rename to Mods/Core/Textures/things/item/resource/SubcoreHigh.png diff --git a/textures/things/item/resource/SubcoreRegular.png b/Mods/Core/Textures/things/item/resource/SubcoreRegular.png similarity index 100% rename from textures/things/item/resource/SubcoreRegular.png rename to Mods/Core/Textures/things/item/resource/SubcoreRegular.png diff --git a/textures/things/item/resource/Wool.png b/Mods/Core/Textures/things/item/resource/Wool.png similarity index 100% rename from textures/things/item/resource/Wool.png rename to Mods/Core/Textures/things/item/resource/Wool.png diff --git a/textures/things/item/resource/Wort.png b/Mods/Core/Textures/things/item/resource/Wort.png similarity index 100% rename from textures/things/item/resource/Wort.png rename to Mods/Core/Textures/things/item/resource/Wort.png diff --git a/textures/things/item/resource/alt_steel/Old-Steel_a.png b/Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_a.png similarity index 100% rename from textures/things/item/resource/alt_steel/Old-Steel_a.png rename to Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_a.png diff --git a/textures/things/item/resource/alt_steel/Old-Steel_b.png b/Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_b.png similarity index 100% rename from textures/things/item/resource/alt_steel/Old-Steel_b.png rename to Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_b.png diff --git a/textures/things/item/resource/alt_steel/Old-Steel_c.png b/Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_c.png similarity index 100% rename from textures/things/item/resource/alt_steel/Old-Steel_c.png rename to Mods/Core/Textures/things/item/resource/alt_steel/Old-Steel_c.png diff --git a/textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a.png b/Mods/Core/Textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a.png similarity index 100% rename from textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a.png diff --git a/textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b.png b/Mods/Core/Textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b.png similarity index 100% rename from textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b.png diff --git a/textures/things/item/resource/animalproductraw/eggoval/eggoval_a.png b/Mods/Core/Textures/things/item/resource/animalproductraw/eggoval/eggoval_a.png similarity index 100% rename from textures/things/item/resource/animalproductraw/eggoval/eggoval_a.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/eggoval/eggoval_a.png diff --git a/textures/things/item/resource/animalproductraw/eggoval/eggoval_b.png b/Mods/Core/Textures/things/item/resource/animalproductraw/eggoval/eggoval_b.png similarity index 100% rename from textures/things/item/resource/animalproductraw/eggoval/eggoval_b.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/eggoval/eggoval_b.png diff --git a/textures/things/item/resource/animalproductraw/egground/egground_a.png b/Mods/Core/Textures/things/item/resource/animalproductraw/egground/egground_a.png similarity index 100% rename from textures/things/item/resource/animalproductraw/egground/egground_a.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/egground/egground_a.png diff --git a/textures/things/item/resource/animalproductraw/egground/egground_b.png b/Mods/Core/Textures/things/item/resource/animalproductraw/egground/egground_b.png similarity index 100% rename from textures/things/item/resource/animalproductraw/egground/egground_b.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/egground/egground_b.png diff --git a/textures/things/item/resource/animalproductraw/insectjelly.png b/Mods/Core/Textures/things/item/resource/animalproductraw/insectjelly.png similarity index 100% rename from textures/things/item/resource/animalproductraw/insectjelly.png rename to Mods/Core/Textures/things/item/resource/animalproductraw/insectjelly.png diff --git a/textures/things/item/resource/babyfood/BabyFood_a.png b/Mods/Core/Textures/things/item/resource/babyfood/BabyFood_a.png similarity index 100% rename from textures/things/item/resource/babyfood/BabyFood_a.png rename to Mods/Core/Textures/things/item/resource/babyfood/BabyFood_a.png diff --git a/textures/things/item/resource/babyfood/BabyFood_b.png b/Mods/Core/Textures/things/item/resource/babyfood/BabyFood_b.png similarity index 100% rename from textures/things/item/resource/babyfood/BabyFood_b.png rename to Mods/Core/Textures/things/item/resource/babyfood/BabyFood_b.png diff --git a/textures/things/item/resource/babyfood/BabyFood_c.png b/Mods/Core/Textures/things/item/resource/babyfood/BabyFood_c.png similarity index 100% rename from textures/things/item/resource/babyfood/BabyFood_c.png rename to Mods/Core/Textures/things/item/resource/babyfood/BabyFood_c.png diff --git a/textures/things/item/resource/bioferrite/Bioferrite_a.png b/Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_a.png similarity index 100% rename from textures/things/item/resource/bioferrite/Bioferrite_a.png rename to Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_a.png diff --git a/textures/things/item/resource/bioferrite/Bioferrite_b.png b/Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_b.png similarity index 100% rename from textures/things/item/resource/bioferrite/Bioferrite_b.png rename to Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_b.png diff --git a/textures/things/item/resource/bioferrite/Bioferrite_c.png b/Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_c.png similarity index 100% rename from textures/things/item/resource/bioferrite/Bioferrite_c.png rename to Mods/Core/Textures/things/item/resource/bioferrite/Bioferrite_c.png diff --git a/textures/things/item/resource/chocolate.png b/Mods/Core/Textures/things/item/resource/chocolate.png similarity index 100% rename from textures/things/item/resource/chocolate.png rename to Mods/Core/Textures/things/item/resource/chocolate.png diff --git a/textures/things/item/resource/cloth.png b/Mods/Core/Textures/things/item/resource/cloth.png similarity index 100% rename from textures/things/item/resource/cloth.png rename to Mods/Core/Textures/things/item/resource/cloth.png diff --git a/textures/things/item/resource/cloth/Cloth_a.png b/Mods/Core/Textures/things/item/resource/cloth/Cloth_a.png similarity index 100% rename from textures/things/item/resource/cloth/Cloth_a.png rename to Mods/Core/Textures/things/item/resource/cloth/Cloth_a.png diff --git a/textures/things/item/resource/cloth/Cloth_b.png b/Mods/Core/Textures/things/item/resource/cloth/Cloth_b.png similarity index 100% rename from textures/things/item/resource/cloth/Cloth_b.png rename to Mods/Core/Textures/things/item/resource/cloth/Cloth_b.png diff --git a/textures/things/item/resource/cloth/Cloth_c.png b/Mods/Core/Textures/things/item/resource/cloth/Cloth_c.png similarity index 100% rename from textures/things/item/resource/cloth/Cloth_c.png rename to Mods/Core/Textures/things/item/resource/cloth/Cloth_c.png diff --git a/textures/things/item/resource/component.png b/Mods/Core/Textures/things/item/resource/component.png similarity index 100% rename from textures/things/item/resource/component.png rename to Mods/Core/Textures/things/item/resource/component.png diff --git a/textures/things/item/resource/componentindustrial/ComponentIndustrial.png b/Mods/Core/Textures/things/item/resource/componentindustrial/ComponentIndustrial.png similarity index 100% rename from textures/things/item/resource/componentindustrial/ComponentIndustrial.png rename to Mods/Core/Textures/things/item/resource/componentindustrial/ComponentIndustrial.png diff --git a/textures/things/item/resource/componentspacer/ComponentSpacer.png b/Mods/Core/Textures/things/item/resource/componentspacer/ComponentSpacer.png similarity index 100% rename from textures/things/item/resource/componentspacer/ComponentSpacer.png rename to Mods/Core/Textures/things/item/resource/componentspacer/ComponentSpacer.png diff --git a/textures/things/item/resource/devilstrand/Devilstrand_a.png b/Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_a.png similarity index 100% rename from textures/things/item/resource/devilstrand/Devilstrand_a.png rename to Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_a.png diff --git a/textures/things/item/resource/devilstrand/Devilstrand_b.png b/Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_b.png similarity index 100% rename from textures/things/item/resource/devilstrand/Devilstrand_b.png rename to Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_b.png diff --git a/textures/things/item/resource/devilstrand/Devilstrand_c.png b/Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_c.png similarity index 100% rename from textures/things/item/resource/devilstrand/Devilstrand_c.png rename to Mods/Core/Textures/things/item/resource/devilstrand/Devilstrand_c.png diff --git a/textures/things/item/resource/gold.png b/Mods/Core/Textures/things/item/resource/gold.png similarity index 100% rename from textures/things/item/resource/gold.png rename to Mods/Core/Textures/things/item/resource/gold.png diff --git a/textures/things/item/resource/gold/Gold_a.png b/Mods/Core/Textures/things/item/resource/gold/Gold_a.png similarity index 100% rename from textures/things/item/resource/gold/Gold_a.png rename to Mods/Core/Textures/things/item/resource/gold/Gold_a.png diff --git a/textures/things/item/resource/gold/Gold_b.png b/Mods/Core/Textures/things/item/resource/gold/Gold_b.png similarity index 100% rename from textures/things/item/resource/gold/Gold_b.png rename to Mods/Core/Textures/things/item/resource/gold/Gold_b.png diff --git a/textures/things/item/resource/gold/Gold_c.png b/Mods/Core/Textures/things/item/resource/gold/Gold_c.png similarity index 100% rename from textures/things/item/resource/gold/Gold_c.png rename to Mods/Core/Textures/things/item/resource/gold/Gold_c.png diff --git a/textures/things/item/resource/hemogenpack/HemogenPack_a.png b/Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_a.png similarity index 100% rename from textures/things/item/resource/hemogenpack/HemogenPack_a.png rename to Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_a.png diff --git a/textures/things/item/resource/hemogenpack/HemogenPack_b.png b/Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_b.png similarity index 100% rename from textures/things/item/resource/hemogenpack/HemogenPack_b.png rename to Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_b.png diff --git a/textures/things/item/resource/hemogenpack/HemogenPack_c.png b/Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_c.png similarity index 100% rename from textures/things/item/resource/hemogenpack/HemogenPack_c.png rename to Mods/Core/Textures/things/item/resource/hemogenpack/HemogenPack_c.png diff --git a/textures/things/item/resource/hyperweave.png b/Mods/Core/Textures/things/item/resource/hyperweave.png similarity index 100% rename from textures/things/item/resource/hyperweave.png rename to Mods/Core/Textures/things/item/resource/hyperweave.png diff --git a/textures/things/item/resource/hyperweave/Hyperweave_a.png b/Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_a.png similarity index 100% rename from textures/things/item/resource/hyperweave/Hyperweave_a.png rename to Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_a.png diff --git a/textures/things/item/resource/hyperweave/Hyperweave_b.png b/Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_b.png similarity index 100% rename from textures/things/item/resource/hyperweave/Hyperweave_b.png rename to Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_b.png diff --git a/textures/things/item/resource/hyperweave/Hyperweave_c.png b/Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_c.png similarity index 100% rename from textures/things/item/resource/hyperweave/Hyperweave_c.png rename to Mods/Core/Textures/things/item/resource/hyperweave/Hyperweave_c.png diff --git a/textures/things/item/resource/jade.png b/Mods/Core/Textures/things/item/resource/jade.png similarity index 100% rename from textures/things/item/resource/jade.png rename to Mods/Core/Textures/things/item/resource/jade.png diff --git a/textures/things/item/resource/jade/Jade_a.png b/Mods/Core/Textures/things/item/resource/jade/Jade_a.png similarity index 100% rename from textures/things/item/resource/jade/Jade_a.png rename to Mods/Core/Textures/things/item/resource/jade/Jade_a.png diff --git a/textures/things/item/resource/jade/Jade_b.png b/Mods/Core/Textures/things/item/resource/jade/Jade_b.png similarity index 100% rename from textures/things/item/resource/jade/Jade_b.png rename to Mods/Core/Textures/things/item/resource/jade/Jade_b.png diff --git a/textures/things/item/resource/jade/Jade_c.png b/Mods/Core/Textures/things/item/resource/jade/Jade_c.png similarity index 100% rename from textures/things/item/resource/jade/Jade_c.png rename to Mods/Core/Textures/things/item/resource/jade/Jade_c.png diff --git a/textures/things/item/resource/kibble.png b/Mods/Core/Textures/things/item/resource/kibble.png similarity index 100% rename from textures/things/item/resource/kibble.png rename to Mods/Core/Textures/things/item/resource/kibble.png diff --git a/textures/things/item/resource/leather/Leather_a.png b/Mods/Core/Textures/things/item/resource/leather/Leather_a.png similarity index 100% rename from textures/things/item/resource/leather/Leather_a.png rename to Mods/Core/Textures/things/item/resource/leather/Leather_a.png diff --git a/textures/things/item/resource/leather/Leather_b.png b/Mods/Core/Textures/things/item/resource/leather/Leather_b.png similarity index 100% rename from textures/things/item/resource/leather/Leather_b.png rename to Mods/Core/Textures/things/item/resource/leather/Leather_b.png diff --git a/textures/things/item/resource/leather/Leather_c.png b/Mods/Core/Textures/things/item/resource/leather/Leather_c.png similarity index 100% rename from textures/things/item/resource/leather/Leather_c.png rename to Mods/Core/Textures/things/item/resource/leather/Leather_c.png diff --git a/textures/things/item/resource/meatfoodraw/meatbig.png b/Mods/Core/Textures/things/item/resource/meatfoodraw/meatbig.png similarity index 100% rename from textures/things/item/resource/meatfoodraw/meatbig.png rename to Mods/Core/Textures/things/item/resource/meatfoodraw/meatbig.png diff --git a/textures/things/item/resource/meatfoodraw/meathuman.png b/Mods/Core/Textures/things/item/resource/meatfoodraw/meathuman.png similarity index 100% rename from textures/things/item/resource/meatfoodraw/meathuman.png rename to Mods/Core/Textures/things/item/resource/meatfoodraw/meathuman.png diff --git a/textures/things/item/resource/meatfoodraw/meatsmall.png b/Mods/Core/Textures/things/item/resource/meatfoodraw/meatsmall.png similarity index 100% rename from textures/things/item/resource/meatfoodraw/meatsmall.png rename to Mods/Core/Textures/things/item/resource/meatfoodraw/meatsmall.png diff --git a/textures/things/item/resource/medicine.png b/Mods/Core/Textures/things/item/resource/medicine.png similarity index 100% rename from textures/things/item/resource/medicine.png rename to Mods/Core/Textures/things/item/resource/medicine.png diff --git a/textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_a.png b/Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_a.png similarity index 100% rename from textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_a.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_a.png diff --git a/textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_b.png b/Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_b.png similarity index 100% rename from textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_b.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_b.png diff --git a/textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_c.png b/Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_c.png similarity index 100% rename from textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_c.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineherbal/MedicineHerbal_c.png diff --git a/textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a.png b/Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a.png similarity index 100% rename from textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a.png diff --git a/textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b.png b/Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b.png similarity index 100% rename from textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b.png diff --git a/textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c.png b/Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c.png similarity index 100% rename from textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c.png diff --git a/textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_a.png b/Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_a.png similarity index 100% rename from textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_a.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_a.png diff --git a/textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_b.png b/Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_b.png similarity index 100% rename from textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_b.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_b.png diff --git a/textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_c.png b/Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_c.png similarity index 100% rename from textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_c.png rename to Mods/Core/Textures/things/item/resource/medicine/medicineultratech/MedicineUltratech_c.png diff --git a/textures/things/item/resource/medicineglitterworld.png b/Mods/Core/Textures/things/item/resource/medicineglitterworld.png similarity index 100% rename from textures/things/item/resource/medicineglitterworld.png rename to Mods/Core/Textures/things/item/resource/medicineglitterworld.png diff --git a/textures/things/item/resource/medicineherbal.png b/Mods/Core/Textures/things/item/resource/medicineherbal.png similarity index 100% rename from textures/things/item/resource/medicineherbal.png rename to Mods/Core/Textures/things/item/resource/medicineherbal.png diff --git a/textures/things/item/resource/metal/metala.png b/Mods/Core/Textures/things/item/resource/metal/metala.png similarity index 100% rename from textures/things/item/resource/metal/metala.png rename to Mods/Core/Textures/things/item/resource/metal/metala.png diff --git a/textures/things/item/resource/metal/metalb.png b/Mods/Core/Textures/things/item/resource/metal/metalb.png similarity index 100% rename from textures/things/item/resource/metal/metalb.png rename to Mods/Core/Textures/things/item/resource/metal/metalb.png diff --git a/textures/things/item/resource/metal/metalc.png b/Mods/Core/Textures/things/item/resource/metal/metalc.png similarity index 100% rename from textures/things/item/resource/metal/metalc.png rename to Mods/Core/Textures/things/item/resource/metal/metalc.png diff --git a/textures/things/item/resource/neutroamine.png b/Mods/Core/Textures/things/item/resource/neutroamine.png similarity index 100% rename from textures/things/item/resource/neutroamine.png rename to Mods/Core/Textures/things/item/resource/neutroamine.png diff --git a/textures/things/item/resource/neutroamine/Neutroamine_a.png b/Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_a.png similarity index 100% rename from textures/things/item/resource/neutroamine/Neutroamine_a.png rename to Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_a.png diff --git a/textures/things/item/resource/neutroamine/Neutroamine_b.png b/Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_b.png similarity index 100% rename from textures/things/item/resource/neutroamine/Neutroamine_b.png rename to Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_b.png diff --git a/textures/things/item/resource/neutroamine/Neutroamine_c.png b/Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_c.png similarity index 100% rename from textures/things/item/resource/neutroamine/Neutroamine_c.png rename to Mods/Core/Textures/things/item/resource/neutroamine/Neutroamine_c.png diff --git a/textures/things/item/resource/pemmican.png b/Mods/Core/Textures/things/item/resource/pemmican.png similarity index 100% rename from textures/things/item/resource/pemmican.png rename to Mods/Core/Textures/things/item/resource/pemmican.png diff --git a/textures/things/item/resource/pemmican/Pemmican_a.png b/Mods/Core/Textures/things/item/resource/pemmican/Pemmican_a.png similarity index 100% rename from textures/things/item/resource/pemmican/Pemmican_a.png rename to Mods/Core/Textures/things/item/resource/pemmican/Pemmican_a.png diff --git a/textures/things/item/resource/pemmican/Pemmican_b.png b/Mods/Core/Textures/things/item/resource/pemmican/Pemmican_b.png similarity index 100% rename from textures/things/item/resource/pemmican/Pemmican_b.png rename to Mods/Core/Textures/things/item/resource/pemmican/Pemmican_b.png diff --git a/textures/things/item/resource/pemmican/Pemmican_c.png b/Mods/Core/Textures/things/item/resource/pemmican/Pemmican_c.png similarity index 100% rename from textures/things/item/resource/pemmican/Pemmican_c.png rename to Mods/Core/Textures/things/item/resource/pemmican/Pemmican_c.png diff --git a/textures/things/item/resource/plantfoodraw/AgaveFruit.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/AgaveFruit.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/AgaveFruit.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/AgaveFruit.png diff --git a/textures/things/item/resource/plantfoodraw/Berries.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Berries.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Berries.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Berries.png diff --git a/textures/things/item/resource/plantfoodraw/Corn.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Corn.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Corn.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Corn.png diff --git a/textures/things/item/resource/plantfoodraw/Hops.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Hops.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Hops.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Hops.png diff --git a/textures/things/item/resource/plantfoodraw/Potatoes.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Potatoes.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Potatoes.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Potatoes.png diff --git a/textures/things/item/resource/plantfoodraw/PsychoidLeaves.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/PsychoidLeaves.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/PsychoidLeaves.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/PsychoidLeaves.png diff --git a/textures/things/item/resource/plantfoodraw/RawFungus.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/RawFungus.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/RawFungus.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/RawFungus.png diff --git a/textures/things/item/resource/plantfoodraw/Rice.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Rice.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Rice.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Rice.png diff --git a/textures/things/item/resource/plantfoodraw/SmokeleafLeaves.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/SmokeleafLeaves.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/SmokeleafLeaves.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/SmokeleafLeaves.png diff --git a/textures/things/item/resource/plantfoodraw/Toxipotato.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/Toxipotato.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/Toxipotato.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/Toxipotato.png diff --git a/textures/things/item/resource/plantfoodraw/hay/hay_a.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_a.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/hay/hay_a.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_a.png diff --git a/textures/things/item/resource/plantfoodraw/hay/hay_b.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_b.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/hay/hay_b.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_b.png diff --git a/textures/things/item/resource/plantfoodraw/hay/hay_c.png b/Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_c.png similarity index 100% rename from textures/things/item/resource/plantfoodraw/hay/hay_c.png rename to Mods/Core/Textures/things/item/resource/plantfoodraw/hay/hay_c.png diff --git a/textures/things/item/resource/plasteel.png b/Mods/Core/Textures/things/item/resource/plasteel.png similarity index 100% rename from textures/things/item/resource/plasteel.png rename to Mods/Core/Textures/things/item/resource/plasteel.png diff --git a/textures/things/item/resource/plasteel/Plasteel_a.png b/Mods/Core/Textures/things/item/resource/plasteel/Plasteel_a.png similarity index 100% rename from textures/things/item/resource/plasteel/Plasteel_a.png rename to Mods/Core/Textures/things/item/resource/plasteel/Plasteel_a.png diff --git a/textures/things/item/resource/plasteel/Plasteel_b.png b/Mods/Core/Textures/things/item/resource/plasteel/Plasteel_b.png similarity index 100% rename from textures/things/item/resource/plasteel/Plasteel_b.png rename to Mods/Core/Textures/things/item/resource/plasteel/Plasteel_b.png diff --git a/textures/things/item/resource/plasteel/Plasteel_c.png b/Mods/Core/Textures/things/item/resource/plasteel/Plasteel_c.png similarity index 100% rename from textures/things/item/resource/plasteel/Plasteel_c.png rename to Mods/Core/Textures/things/item/resource/plasteel/Plasteel_c.png diff --git a/textures/things/item/resource/shell.png b/Mods/Core/Textures/things/item/resource/shell.png similarity index 100% rename from textures/things/item/resource/shell.png rename to Mods/Core/Textures/things/item/resource/shell.png diff --git a/textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a.png diff --git a/textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b.png diff --git a/textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c.png diff --git a/textures/things/item/resource/shell/shell_emp/Shell_EMP_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_emp/Shell_EMP_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_a.png diff --git a/textures/things/item/resource/shell/shell_emp/Shell_EMP_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_emp/Shell_EMP_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_b.png diff --git a/textures/things/item/resource/shell/shell_emp/Shell_EMP_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_emp/Shell_EMP_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_emp/Shell_EMP_c.png diff --git a/textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_a.png diff --git a/textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_b.png diff --git a/textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_firefoam/Shell_Firefoam_c.png diff --git a/textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a.png diff --git a/textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b.png diff --git a/textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c.png diff --git a/textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_a.png diff --git a/textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_b.png diff --git a/textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_incendiary/Shell_Incendiary_c.png diff --git a/textures/things/item/resource/shell/shell_toxic/Shell_Toxic_a.png b/Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_a.png similarity index 100% rename from textures/things/item/resource/shell/shell_toxic/Shell_Toxic_a.png rename to Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_a.png diff --git a/textures/things/item/resource/shell/shell_toxic/Shell_Toxic_b.png b/Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_b.png similarity index 100% rename from textures/things/item/resource/shell/shell_toxic/Shell_Toxic_b.png rename to Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_b.png diff --git a/textures/things/item/resource/shell/shell_toxic/Shell_Toxic_c.png b/Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_c.png similarity index 100% rename from textures/things/item/resource/shell/shell_toxic/Shell_Toxic_c.png rename to Mods/Core/Textures/things/item/resource/shell/shell_toxic/Shell_Toxic_c.png diff --git a/textures/things/item/resource/silver.png b/Mods/Core/Textures/things/item/resource/silver.png similarity index 100% rename from textures/things/item/resource/silver.png rename to Mods/Core/Textures/things/item/resource/silver.png diff --git a/textures/things/item/resource/silver/Silver_a.png b/Mods/Core/Textures/things/item/resource/silver/Silver_a.png similarity index 100% rename from textures/things/item/resource/silver/Silver_a.png rename to Mods/Core/Textures/things/item/resource/silver/Silver_a.png diff --git a/textures/things/item/resource/silver/Silver_b.png b/Mods/Core/Textures/things/item/resource/silver/Silver_b.png similarity index 100% rename from textures/things/item/resource/silver/Silver_b.png rename to Mods/Core/Textures/things/item/resource/silver/Silver_b.png diff --git a/textures/things/item/resource/silver/Silver_c.png b/Mods/Core/Textures/things/item/resource/silver/Silver_c.png similarity index 100% rename from textures/things/item/resource/silver/Silver_c.png rename to Mods/Core/Textures/things/item/resource/silver/Silver_c.png diff --git a/textures/things/item/resource/special/GoldenCube.png b/Mods/Core/Textures/things/item/resource/special/GoldenCube.png similarity index 100% rename from textures/things/item/resource/special/GoldenCube.png rename to Mods/Core/Textures/things/item/resource/special/GoldenCube.png diff --git a/textures/things/item/resource/steel/Steel_a.png b/Mods/Core/Textures/things/item/resource/steel/Steel_a.png similarity index 100% rename from textures/things/item/resource/steel/Steel_a.png rename to Mods/Core/Textures/things/item/resource/steel/Steel_a.png diff --git a/textures/things/item/resource/steel/Steel_b.png b/Mods/Core/Textures/things/item/resource/steel/Steel_b.png similarity index 100% rename from textures/things/item/resource/steel/Steel_b.png rename to Mods/Core/Textures/things/item/resource/steel/Steel_b.png diff --git a/textures/things/item/resource/steel/Steel_c.png b/Mods/Core/Textures/things/item/resource/steel/Steel_c.png similarity index 100% rename from textures/things/item/resource/steel/Steel_c.png rename to Mods/Core/Textures/things/item/resource/steel/Steel_c.png diff --git a/textures/things/item/resource/stoneblocks.png b/Mods/Core/Textures/things/item/resource/stoneblocks.png similarity index 100% rename from textures/things/item/resource/stoneblocks.png rename to Mods/Core/Textures/things/item/resource/stoneblocks.png diff --git a/textures/things/item/resource/stoneblocks/StoneBlocks_a.png b/Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_a.png similarity index 100% rename from textures/things/item/resource/stoneblocks/StoneBlocks_a.png rename to Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_a.png diff --git a/textures/things/item/resource/stoneblocks/StoneBlocks_b.png b/Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_b.png similarity index 100% rename from textures/things/item/resource/stoneblocks/StoneBlocks_b.png rename to Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_b.png diff --git a/textures/things/item/resource/stoneblocks/StoneBlocks_c.png b/Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_c.png similarity index 100% rename from textures/things/item/resource/stoneblocks/StoneBlocks_c.png rename to Mods/Core/Textures/things/item/resource/stoneblocks/StoneBlocks_c.png diff --git a/textures/things/item/resource/synthread.png b/Mods/Core/Textures/things/item/resource/synthread.png similarity index 100% rename from textures/things/item/resource/synthread.png rename to Mods/Core/Textures/things/item/resource/synthread.png diff --git a/textures/things/item/resource/synthread/Synthread_a.png b/Mods/Core/Textures/things/item/resource/synthread/Synthread_a.png similarity index 100% rename from textures/things/item/resource/synthread/Synthread_a.png rename to Mods/Core/Textures/things/item/resource/synthread/Synthread_a.png diff --git a/textures/things/item/resource/synthread/Synthread_b.png b/Mods/Core/Textures/things/item/resource/synthread/Synthread_b.png similarity index 100% rename from textures/things/item/resource/synthread/Synthread_b.png rename to Mods/Core/Textures/things/item/resource/synthread/Synthread_b.png diff --git a/textures/things/item/resource/synthread/Synthread_c.png b/Mods/Core/Textures/things/item/resource/synthread/Synthread_c.png similarity index 100% rename from textures/things/item/resource/synthread/Synthread_c.png rename to Mods/Core/Textures/things/item/resource/synthread/Synthread_c.png diff --git a/textures/things/item/resource/twistedmeat/TwistedMeat_a.png b/Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_a.png similarity index 100% rename from textures/things/item/resource/twistedmeat/TwistedMeat_a.png rename to Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_a.png diff --git a/textures/things/item/resource/twistedmeat/TwistedMeat_b.png b/Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_b.png similarity index 100% rename from textures/things/item/resource/twistedmeat/TwistedMeat_b.png rename to Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_b.png diff --git a/textures/things/item/resource/twistedmeat/TwistedMeat_c.png b/Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_c.png similarity index 100% rename from textures/things/item/resource/twistedmeat/TwistedMeat_c.png rename to Mods/Core/Textures/things/item/resource/twistedmeat/TwistedMeat_c.png diff --git a/textures/things/item/resource/uranium.png b/Mods/Core/Textures/things/item/resource/uranium.png similarity index 100% rename from textures/things/item/resource/uranium.png rename to Mods/Core/Textures/things/item/resource/uranium.png diff --git a/textures/things/item/resource/uranium/Uranium_a.png b/Mods/Core/Textures/things/item/resource/uranium/Uranium_a.png similarity index 100% rename from textures/things/item/resource/uranium/Uranium_a.png rename to Mods/Core/Textures/things/item/resource/uranium/Uranium_a.png diff --git a/textures/things/item/resource/uranium/Uranium_b.png b/Mods/Core/Textures/things/item/resource/uranium/Uranium_b.png similarity index 100% rename from textures/things/item/resource/uranium/Uranium_b.png rename to Mods/Core/Textures/things/item/resource/uranium/Uranium_b.png diff --git a/textures/things/item/resource/uranium/Uranium_c.png b/Mods/Core/Textures/things/item/resource/uranium/Uranium_c.png similarity index 100% rename from textures/things/item/resource/uranium/Uranium_c.png rename to Mods/Core/Textures/things/item/resource/uranium/Uranium_c.png diff --git a/textures/things/item/resource/wastepack/Wastepack_a.png b/Mods/Core/Textures/things/item/resource/wastepack/Wastepack_a.png similarity index 100% rename from textures/things/item/resource/wastepack/Wastepack_a.png rename to Mods/Core/Textures/things/item/resource/wastepack/Wastepack_a.png diff --git a/textures/things/item/resource/wastepack/Wastepack_b.png b/Mods/Core/Textures/things/item/resource/wastepack/Wastepack_b.png similarity index 100% rename from textures/things/item/resource/wastepack/Wastepack_b.png rename to Mods/Core/Textures/things/item/resource/wastepack/Wastepack_b.png diff --git a/textures/things/item/resource/wastepack/Wastepack_c.png b/Mods/Core/Textures/things/item/resource/wastepack/Wastepack_c.png similarity index 100% rename from textures/things/item/resource/wastepack/Wastepack_c.png rename to Mods/Core/Textures/things/item/resource/wastepack/Wastepack_c.png diff --git a/textures/things/item/resource/woodlog/WoodLog_a.png b/Mods/Core/Textures/things/item/resource/woodlog/WoodLog_a.png similarity index 100% rename from textures/things/item/resource/woodlog/WoodLog_a.png rename to Mods/Core/Textures/things/item/resource/woodlog/WoodLog_a.png diff --git a/textures/things/item/resource/woodlog/WoodLog_b.png b/Mods/Core/Textures/things/item/resource/woodlog/WoodLog_b.png similarity index 100% rename from textures/things/item/resource/woodlog/WoodLog_b.png rename to Mods/Core/Textures/things/item/resource/woodlog/WoodLog_b.png diff --git a/textures/things/item/resource/woodlog/WoodLog_c.png b/Mods/Core/Textures/things/item/resource/woodlog/WoodLog_c.png similarity index 100% rename from textures/things/item/resource/woodlog/WoodLog_c.png rename to Mods/Core/Textures/things/item/resource/woodlog/WoodLog_c.png diff --git a/textures/things/item/skull/Skull_a.png b/Mods/Core/Textures/things/item/skull/Skull_a.png similarity index 100% rename from textures/things/item/skull/Skull_a.png rename to Mods/Core/Textures/things/item/skull/Skull_a.png diff --git a/textures/things/item/skull/Skull_b.png b/Mods/Core/Textures/things/item/skull/Skull_b.png similarity index 100% rename from textures/things/item/skull/Skull_b.png rename to Mods/Core/Textures/things/item/skull/Skull_b.png diff --git a/textures/things/item/skull/Skull_c.png b/Mods/Core/Textures/things/item/skull/Skull_c.png similarity index 100% rename from textures/things/item/skull/Skull_c.png rename to Mods/Core/Textures/things/item/skull/Skull_c.png diff --git a/textures/things/item/special/AIPersonaCore.png b/Mods/Core/Textures/things/item/special/AIPersonaCore.png similarity index 100% rename from textures/things/item/special/AIPersonaCore.png rename to Mods/Core/Textures/things/item/special/AIPersonaCore.png diff --git a/textures/things/item/special/Embryo.png b/Mods/Core/Textures/things/item/special/Embryo.png similarity index 100% rename from textures/things/item/special/Embryo.png rename to Mods/Core/Textures/things/item/special/Embryo.png diff --git a/textures/things/item/special/MechanitorComplexMap.png b/Mods/Core/Textures/things/item/special/MechanitorComplexMap.png similarity index 100% rename from textures/things/item/special/MechanitorComplexMap.png rename to Mods/Core/Textures/things/item/special/MechanitorComplexMap.png diff --git a/textures/things/item/special/Ovum.png b/Mods/Core/Textures/things/item/special/Ovum.png similarity index 100% rename from textures/things/item/special/Ovum.png rename to Mods/Core/Textures/things/item/special/Ovum.png diff --git a/textures/things/item/special/SubpersonaCoreTechprof.png b/Mods/Core/Textures/things/item/special/SubpersonaCoreTechprof.png similarity index 100% rename from textures/things/item/special/SubpersonaCoreTechprof.png rename to Mods/Core/Textures/things/item/special/SubpersonaCoreTechprof.png diff --git a/textures/things/item/special/Xenogerm.png b/Mods/Core/Textures/things/item/special/Xenogerm.png similarity index 100% rename from textures/things/item/special/Xenogerm.png rename to Mods/Core/Textures/things/item/special/Xenogerm.png diff --git a/textures/things/item/special/elephanttusk.png b/Mods/Core/Textures/things/item/special/elephanttusk.png similarity index 100% rename from textures/things/item/special/elephanttusk.png rename to Mods/Core/Textures/things/item/special/elephanttusk.png diff --git a/textures/things/item/special/genepack/Genepack_a.png b/Mods/Core/Textures/things/item/special/genepack/Genepack_a.png similarity index 100% rename from textures/things/item/special/genepack/Genepack_a.png rename to Mods/Core/Textures/things/item/special/genepack/Genepack_a.png diff --git a/textures/things/item/special/genepack/Genepack_b.png b/Mods/Core/Textures/things/item/special/genepack/Genepack_b.png similarity index 100% rename from textures/things/item/special/genepack/Genepack_b.png rename to Mods/Core/Textures/things/item/special/genepack/Genepack_b.png diff --git a/textures/things/item/special/genepack/Genepack_c.png b/Mods/Core/Textures/things/item/special/genepack/Genepack_c.png similarity index 100% rename from textures/things/item/special/genepack/Genepack_c.png rename to Mods/Core/Textures/things/item/special/genepack/Genepack_c.png diff --git a/textures/things/item/special/genepack/Genepack_d.png b/Mods/Core/Textures/things/item/special/genepack/Genepack_d.png similarity index 100% rename from textures/things/item/special/genepack/Genepack_d.png rename to Mods/Core/Textures/things/item/special/genepack/Genepack_d.png diff --git a/textures/things/item/special/genepack/Genepack_e.png b/Mods/Core/Textures/things/item/special/genepack/Genepack_e.png similarity index 100% rename from textures/things/item/special/genepack/Genepack_e.png rename to Mods/Core/Textures/things/item/special/genepack/Genepack_e.png diff --git a/textures/things/item/special/neurotrainer.png b/Mods/Core/Textures/things/item/special/neurotrainer.png similarity index 100% rename from textures/things/item/special/neurotrainer.png rename to Mods/Core/Textures/things/item/special/neurotrainer.png diff --git a/textures/things/item/special/thrumbohorn.png b/Mods/Core/Textures/things/item/special/thrumbohorn.png similarity index 100% rename from textures/things/item/special/thrumbohorn.png rename to Mods/Core/Textures/things/item/special/thrumbohorn.png diff --git a/textures/things/item/unfinished/UnfinishedApparel.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedApparel.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedApparel.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedApparel.png diff --git a/textures/things/item/unfinished/UnfinishedBasicSubcore.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedBasicSubcore.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedBasicSubcore.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedBasicSubcore.png diff --git a/textures/things/item/unfinished/UnfinishedBelt.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedBelt.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedBelt.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedBelt.png diff --git a/textures/things/item/unfinished/UnfinishedComponent.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedComponent.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedComponent.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedComponent.png diff --git a/textures/things/item/unfinished/UnfinishedGun.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedGun.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedGun.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedGun.png diff --git a/textures/things/item/unfinished/UnfinishedHealth.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedHealth.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedHealth.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedHealth.png diff --git a/textures/things/item/unfinished/UnfinishedMusicalInstrument.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedMusicalInstrument.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedMusicalInstrument.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedMusicalInstrument.png diff --git a/textures/things/item/unfinished/UnfinishedSculpture.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedSculpture.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedSculpture.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedSculpture.png diff --git a/textures/things/item/unfinished/UnfinishedTechArmor.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedTechArmor.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedTechArmor.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedTechArmor.png diff --git a/textures/things/item/unfinished/UnfinishedWeapon.png b/Mods/Core/Textures/things/item/unfinished/UnfinishedWeapon.png similarity index 100% rename from textures/things/item/unfinished/UnfinishedWeapon.png rename to Mods/Core/Textures/things/item/unfinished/UnfinishedWeapon.png diff --git a/textures/things/item/vte_meal/fine/Fine_a.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_a.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_a.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_a.png diff --git a/textures/things/item/vte_meal/fine/Fine_b.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_b.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_b.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_b.png diff --git a/textures/things/item/vte_meal/fine/Fine_c.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_c.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_c.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_c.png diff --git a/textures/things/item/vte_meal/fine/Fine_m_a.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_a.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_m_a.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_a.png diff --git a/textures/things/item/vte_meal/fine/Fine_m_b.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_b.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_m_b.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_b.png diff --git a/textures/things/item/vte_meal/fine/Fine_m_c.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_c.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_m_c.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_m_c.png diff --git a/textures/things/item/vte_meal/fine/Fine_v_a.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_a.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_v_a.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_a.png diff --git a/textures/things/item/vte_meal/fine/Fine_v_b.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_b.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_v_b.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_b.png diff --git a/textures/things/item/vte_meal/fine/Fine_v_c.png b/Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_c.png similarity index 100% rename from textures/things/item/vte_meal/fine/Fine_v_c.png rename to Mods/Core/Textures/things/item/vte_meal/fine/Fine_v_c.png diff --git a/textures/things/item/vte_meal/finemeat/FineMeat_a.png b/Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_a.png similarity index 100% rename from textures/things/item/vte_meal/finemeat/FineMeat_a.png rename to Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_a.png diff --git a/textures/things/item/vte_meal/finemeat/FineMeat_b.png b/Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_b.png similarity index 100% rename from textures/things/item/vte_meal/finemeat/FineMeat_b.png rename to Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_b.png diff --git a/textures/things/item/vte_meal/finemeat/FineMeat_c.png b/Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_c.png similarity index 100% rename from textures/things/item/vte_meal/finemeat/FineMeat_c.png rename to Mods/Core/Textures/things/item/vte_meal/finemeat/FineMeat_c.png diff --git a/textures/things/item/vte_meal/fineveg/FineVeg_a.png b/Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_a.png similarity index 100% rename from textures/things/item/vte_meal/fineveg/FineVeg_a.png rename to Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_a.png diff --git a/textures/things/item/vte_meal/fineveg/FineVeg_b.png b/Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_b.png similarity index 100% rename from textures/things/item/vte_meal/fineveg/FineVeg_b.png rename to Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_b.png diff --git a/textures/things/item/vte_meal/fineveg/FineVeg_c.png b/Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_c.png similarity index 100% rename from textures/things/item/vte_meal/fineveg/FineVeg_c.png rename to Mods/Core/Textures/things/item/vte_meal/fineveg/FineVeg_c.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_a.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_a.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_a.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_a.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_b.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_b.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_b.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_b.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_c.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_c.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_c.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_c.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_m_a.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_a.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_m_a.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_a.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_m_b.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_b.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_m_b.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_b.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_m_c.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_c.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_m_c.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_m_c.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_v_a.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_a.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_v_a.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_a.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_v_b.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_b.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_v_b.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_b.png diff --git a/textures/things/item/vte_meal/lavish/Lavish_v_c.png b/Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_c.png similarity index 100% rename from textures/things/item/vte_meal/lavish/Lavish_v_c.png rename to Mods/Core/Textures/things/item/vte_meal/lavish/Lavish_v_c.png diff --git a/textures/things/item/vte_meal/lavishmeat/LavishMeat_a.png b/Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_a.png similarity index 100% rename from textures/things/item/vte_meal/lavishmeat/LavishMeat_a.png rename to Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_a.png diff --git a/textures/things/item/vte_meal/lavishmeat/LavishMeat_b.png b/Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_b.png similarity index 100% rename from textures/things/item/vte_meal/lavishmeat/LavishMeat_b.png rename to Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_b.png diff --git a/textures/things/item/vte_meal/lavishmeat/LavishMeat_c.png b/Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_c.png similarity index 100% rename from textures/things/item/vte_meal/lavishmeat/LavishMeat_c.png rename to Mods/Core/Textures/things/item/vte_meal/lavishmeat/LavishMeat_c.png diff --git a/textures/things/item/vte_meal/lavishveg/LavishVeg_a.png b/Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_a.png similarity index 100% rename from textures/things/item/vte_meal/lavishveg/LavishVeg_a.png rename to Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_a.png diff --git a/textures/things/item/vte_meal/lavishveg/LavishVeg_b.png b/Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_b.png similarity index 100% rename from textures/things/item/vte_meal/lavishveg/LavishVeg_b.png rename to Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_b.png diff --git a/textures/things/item/vte_meal/lavishveg/LavishVeg_c.png b/Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_c.png similarity index 100% rename from textures/things/item/vte_meal/lavishveg/LavishVeg_c.png rename to Mods/Core/Textures/things/item/vte_meal/lavishveg/LavishVeg_c.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_a.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_a.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_a.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_a.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_b.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_b.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_b.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_b.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_c.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_c.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_c.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_c.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_a.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_a.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_a.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_a.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_b.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_b.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_b.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_b.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_c.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_c.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_c.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_m_c.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_a.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_a.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_a.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_a.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_b.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_b.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_b.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_b.png diff --git a/textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_c.png b/Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_c.png similarity index 100% rename from textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_c.png rename to Mods/Core/Textures/things/item/vte_meal/nutrientpaste/NutrientPaste_v_c.png diff --git a/textures/things/item/vte_meal/simple/Simple_a.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_a.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_a.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_a.png diff --git a/textures/things/item/vte_meal/simple/Simple_b.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_b.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_b.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_b.png diff --git a/textures/things/item/vte_meal/simple/Simple_c.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_c.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_c.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_c.png diff --git a/textures/things/item/vte_meal/simple/Simple_m_a.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_a.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_m_a.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_a.png diff --git a/textures/things/item/vte_meal/simple/Simple_m_b.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_b.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_m_b.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_b.png diff --git a/textures/things/item/vte_meal/simple/Simple_m_c.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_c.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_m_c.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_m_c.png diff --git a/textures/things/item/vte_meal/simple/Simple_v_a.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_a.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_v_a.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_a.png diff --git a/textures/things/item/vte_meal/simple/Simple_v_b.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_b.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_v_b.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_b.png diff --git a/textures/things/item/vte_meal/simple/Simple_v_c.png b/Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_c.png similarity index 100% rename from textures/things/item/vte_meal/simple/Simple_v_c.png rename to Mods/Core/Textures/things/item/vte_meal/simple/Simple_v_c.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_a.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_a.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_a.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_a.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_b.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_b.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_b.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_b.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_c.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_c.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_c.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_c.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_m_a.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_a.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_m_a.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_a.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_m_b.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_b.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_m_b.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_b.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_m_c.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_c.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_m_c.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_m_c.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_v_a.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_a.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_v_a.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_a.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_v_b.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_b.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_v_b.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_b.png diff --git a/textures/things/item/vte_meal/survivalpack/SurvivalPack_v_c.png b/Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_c.png similarity index 100% rename from textures/things/item/vte_meal/survivalpack/SurvivalPack_v_c.png rename to Mods/Core/Textures/things/item/vte_meal/survivalpack/SurvivalPack_v_c.png diff --git a/textures/things/mote/airpuff.png b/Mods/Core/Textures/things/mote/airpuff.png similarity index 100% rename from textures/things/mote/airpuff.png rename to Mods/Core/Textures/things/mote/airpuff.png diff --git a/textures/things/mote/berserkbit.png b/Mods/Core/Textures/things/mote/berserkbit.png similarity index 100% rename from textures/things/mote/berserkbit.png rename to Mods/Core/Textures/things/mote/berserkbit.png diff --git a/textures/things/mote/blastdry.png b/Mods/Core/Textures/things/mote/blastdry.png similarity index 100% rename from textures/things/mote/blastdry.png rename to Mods/Core/Textures/things/mote/blastdry.png diff --git a/textures/things/mote/blastemp.png b/Mods/Core/Textures/things/mote/blastemp.png similarity index 100% rename from textures/things/mote/blastemp.png rename to Mods/Core/Textures/things/mote/blastemp.png diff --git a/textures/things/mote/blastextinguisher.png b/Mods/Core/Textures/things/mote/blastextinguisher.png similarity index 100% rename from textures/things/mote/blastextinguisher.png rename to Mods/Core/Textures/things/mote/blastextinguisher.png diff --git a/textures/things/mote/blastflame.png b/Mods/Core/Textures/things/mote/blastflame.png similarity index 100% rename from textures/things/mote/blastflame.png rename to Mods/Core/Textures/things/mote/blastflame.png diff --git a/textures/things/mote/clean.png b/Mods/Core/Textures/things/mote/clean.png similarity index 100% rename from textures/things/mote/clean.png rename to Mods/Core/Textures/things/mote/clean.png diff --git a/textures/things/mote/clearsnow.png b/Mods/Core/Textures/things/mote/clearsnow.png similarity index 100% rename from textures/things/mote/clearsnow.png rename to Mods/Core/Textures/things/mote/clearsnow.png diff --git a/textures/things/mote/colonistattacking.png b/Mods/Core/Textures/things/mote/colonistattacking.png similarity index 100% rename from textures/things/mote/colonistattacking.png rename to Mods/Core/Textures/things/mote/colonistattacking.png diff --git a/textures/things/mote/colonistfleeing.png b/Mods/Core/Textures/things/mote/colonistfleeing.png similarity index 100% rename from textures/things/mote/colonistfleeing.png rename to Mods/Core/Textures/things/mote/colonistfleeing.png diff --git a/textures/things/mote/cookbit.png b/Mods/Core/Textures/things/mote/cookbit.png similarity index 100% rename from textures/things/mote/cookbit.png rename to Mods/Core/Textures/things/mote/cookbit.png diff --git a/textures/things/mote/drunkbubble.png b/Mods/Core/Textures/things/mote/drunkbubble.png similarity index 100% rename from textures/things/mote/drunkbubble.png rename to Mods/Core/Textures/things/mote/drunkbubble.png diff --git a/textures/things/mote/dustpuff.png b/Mods/Core/Textures/things/mote/dustpuff.png similarity index 100% rename from textures/things/mote/dustpuff.png rename to Mods/Core/Textures/things/mote/dustpuff.png diff --git a/textures/things/mote/electricalspark.png b/Mods/Core/Textures/things/mote/electricalspark.png similarity index 100% rename from textures/things/mote/electricalspark.png rename to Mods/Core/Textures/things/mote/electricalspark.png diff --git a/textures/things/mote/explosionflash.png b/Mods/Core/Textures/things/mote/explosionflash.png similarity index 100% rename from textures/things/mote/explosionflash.png rename to Mods/Core/Textures/things/mote/explosionflash.png diff --git a/textures/things/mote/feedbackattack.png b/Mods/Core/Textures/things/mote/feedbackattack.png similarity index 100% rename from textures/things/mote/feedbackattack.png rename to Mods/Core/Textures/things/mote/feedbackattack.png diff --git a/textures/things/mote/feedbackequip.png b/Mods/Core/Textures/things/mote/feedbackequip.png similarity index 100% rename from textures/things/mote/feedbackequip.png rename to Mods/Core/Textures/things/mote/feedbackequip.png diff --git a/textures/things/mote/feedbackgoto.png b/Mods/Core/Textures/things/mote/feedbackgoto.png similarity index 100% rename from textures/things/mote/feedbackgoto.png rename to Mods/Core/Textures/things/mote/feedbackgoto.png diff --git a/textures/things/mote/fireglow.png b/Mods/Core/Textures/things/mote/fireglow.png similarity index 100% rename from textures/things/mote/fireglow.png rename to Mods/Core/Textures/things/mote/fireglow.png diff --git a/textures/things/mote/foodbitmeat.png b/Mods/Core/Textures/things/mote/foodbitmeat.png similarity index 100% rename from textures/things/mote/foodbitmeat.png rename to Mods/Core/Textures/things/mote/foodbitmeat.png diff --git a/textures/things/mote/foodbitvegetarian.png b/Mods/Core/Textures/things/mote/foodbitvegetarian.png similarity index 100% rename from textures/things/mote/foodbitvegetarian.png rename to Mods/Core/Textures/things/mote/foodbitvegetarian.png diff --git a/textures/things/mote/footprint.png b/Mods/Core/Textures/things/mote/footprint.png similarity index 100% rename from textures/things/mote/footprint.png rename to Mods/Core/Textures/things/mote/footprint.png diff --git a/textures/things/mote/harvest.png b/Mods/Core/Textures/things/mote/harvest.png similarity index 100% rename from textures/things/mote/harvest.png rename to Mods/Core/Textures/things/mote/harvest.png diff --git a/textures/things/mote/healingcross.png b/Mods/Core/Textures/things/mote/healingcross.png similarity index 100% rename from textures/things/mote/healingcross.png rename to Mods/Core/Textures/things/mote/healingcross.png diff --git a/textures/things/mote/heart.png b/Mods/Core/Textures/things/mote/heart.png similarity index 100% rename from textures/things/mote/heart.png rename to Mods/Core/Textures/things/mote/heart.png diff --git a/textures/things/mote/horseshoe.png b/Mods/Core/Textures/things/mote/horseshoe.png similarity index 100% rename from textures/things/mote/horseshoe.png rename to Mods/Core/Textures/things/mote/horseshoe.png diff --git a/textures/things/mote/incapicon.png b/Mods/Core/Textures/things/mote/incapicon.png similarity index 100% rename from textures/things/mote/incapicon.png rename to Mods/Core/Textures/things/mote/incapicon.png diff --git a/textures/things/mote/interactionarrow.png b/Mods/Core/Textures/things/mote/interactionarrow.png similarity index 100% rename from textures/things/mote/interactionarrow.png rename to Mods/Core/Textures/things/mote/interactionarrow.png diff --git a/textures/things/mote/lightningglow.png b/Mods/Core/Textures/things/mote/lightningglow.png similarity index 100% rename from textures/things/mote/lightningglow.png rename to Mods/Core/Textures/things/mote/lightningglow.png diff --git a/textures/things/mote/manhunterbit.png b/Mods/Core/Textures/things/mote/manhunterbit.png similarity index 100% rename from textures/things/mote/manhunterbit.png rename to Mods/Core/Textures/things/mote/manhunterbit.png diff --git a/textures/things/mote/metapuff.png b/Mods/Core/Textures/things/mote/metapuff.png similarity index 100% rename from textures/things/mote/metapuff.png rename to Mods/Core/Textures/things/mote/metapuff.png diff --git a/textures/things/mote/microsparks.png b/Mods/Core/Textures/things/mote/microsparks.png similarity index 100% rename from textures/things/mote/microsparks.png rename to Mods/Core/Textures/things/mote/microsparks.png diff --git a/textures/things/mote/shotflash.png b/Mods/Core/Textures/things/mote/shotflash.png similarity index 100% rename from textures/things/mote/shotflash.png rename to Mods/Core/Textures/things/mote/shotflash.png diff --git a/textures/things/mote/shothit_dirt.png b/Mods/Core/Textures/things/mote/shothit_dirt.png similarity index 100% rename from textures/things/mote/shothit_dirt.png rename to Mods/Core/Textures/things/mote/shothit_dirt.png diff --git a/textures/things/mote/shothit_spark.png b/Mods/Core/Textures/things/mote/shothit_spark.png similarity index 100% rename from textures/things/mote/shothit_spark.png rename to Mods/Core/Textures/things/mote/shothit_spark.png diff --git a/textures/things/mote/sleepz.png b/Mods/Core/Textures/things/mote/sleepz.png similarity index 100% rename from textures/things/mote/sleepz.png rename to Mods/Core/Textures/things/mote/sleepz.png diff --git a/textures/things/mote/smoke.png b/Mods/Core/Textures/things/mote/smoke.png similarity index 100% rename from textures/things/mote/smoke.png rename to Mods/Core/Textures/things/mote/smoke.png diff --git a/textures/things/mote/sow.png b/Mods/Core/Textures/things/mote/sow.png similarity index 100% rename from textures/things/mote/sow.png rename to Mods/Core/Textures/things/mote/sow.png diff --git a/textures/things/mote/sparkflash.png b/Mods/Core/Textures/things/mote/sparkflash.png similarity index 100% rename from textures/things/mote/sparkflash.png rename to Mods/Core/Textures/things/mote/sparkflash.png diff --git a/textures/things/mote/sparkthrown.png b/Mods/Core/Textures/things/mote/sparkthrown.png similarity index 100% rename from textures/things/mote/sparkthrown.png rename to Mods/Core/Textures/things/mote/sparkthrown.png diff --git a/textures/things/mote/speech.png b/Mods/Core/Textures/things/mote/speech.png similarity index 100% rename from textures/things/mote/speech.png rename to Mods/Core/Textures/things/mote/speech.png diff --git a/textures/things/mote/speechsymbols/animalchat.png b/Mods/Core/Textures/things/mote/speechsymbols/animalchat.png similarity index 100% rename from textures/things/mote/speechsymbols/animalchat.png rename to Mods/Core/Textures/things/mote/speechsymbols/animalchat.png diff --git a/textures/things/mote/speechsymbols/breakup.png b/Mods/Core/Textures/things/mote/speechsymbols/breakup.png similarity index 100% rename from textures/things/mote/speechsymbols/breakup.png rename to Mods/Core/Textures/things/mote/speechsymbols/breakup.png diff --git a/textures/things/mote/speechsymbols/buildrapport.png b/Mods/Core/Textures/things/mote/speechsymbols/buildrapport.png similarity index 100% rename from textures/things/mote/speechsymbols/buildrapport.png rename to Mods/Core/Textures/things/mote/speechsymbols/buildrapport.png diff --git a/textures/things/mote/speechsymbols/chitchat.png b/Mods/Core/Textures/things/mote/speechsymbols/chitchat.png similarity index 100% rename from textures/things/mote/speechsymbols/chitchat.png rename to Mods/Core/Textures/things/mote/speechsymbols/chitchat.png diff --git a/textures/things/mote/speechsymbols/deeptalk.png b/Mods/Core/Textures/things/mote/speechsymbols/deeptalk.png similarity index 100% rename from textures/things/mote/speechsymbols/deeptalk.png rename to Mods/Core/Textures/things/mote/speechsymbols/deeptalk.png diff --git a/textures/things/mote/speechsymbols/insult.png b/Mods/Core/Textures/things/mote/speechsymbols/insult.png similarity index 100% rename from textures/things/mote/speechsymbols/insult.png rename to Mods/Core/Textures/things/mote/speechsymbols/insult.png diff --git a/textures/things/mote/speechsymbols/kindwords.png b/Mods/Core/Textures/things/mote/speechsymbols/kindwords.png similarity index 100% rename from textures/things/mote/speechsymbols/kindwords.png rename to Mods/Core/Textures/things/mote/speechsymbols/kindwords.png diff --git a/textures/things/mote/speechsymbols/marriageproposal.png b/Mods/Core/Textures/things/mote/speechsymbols/marriageproposal.png similarity index 100% rename from textures/things/mote/speechsymbols/marriageproposal.png rename to Mods/Core/Textures/things/mote/speechsymbols/marriageproposal.png diff --git a/textures/things/mote/speechsymbols/nuzzle.png b/Mods/Core/Textures/things/mote/speechsymbols/nuzzle.png similarity index 100% rename from textures/things/mote/speechsymbols/nuzzle.png rename to Mods/Core/Textures/things/mote/speechsymbols/nuzzle.png diff --git a/textures/things/mote/speechsymbols/prisonerrecruit.png b/Mods/Core/Textures/things/mote/speechsymbols/prisonerrecruit.png similarity index 100% rename from textures/things/mote/speechsymbols/prisonerrecruit.png rename to Mods/Core/Textures/things/mote/speechsymbols/prisonerrecruit.png diff --git a/textures/things/mote/speechsymbols/romance.png b/Mods/Core/Textures/things/mote/speechsymbols/romance.png similarity index 100% rename from textures/things/mote/speechsymbols/romance.png rename to Mods/Core/Textures/things/mote/speechsymbols/romance.png diff --git a/textures/things/mote/speechsymbols/slight.png b/Mods/Core/Textures/things/mote/speechsymbols/slight.png similarity index 100% rename from textures/things/mote/speechsymbols/slight.png rename to Mods/Core/Textures/things/mote/speechsymbols/slight.png diff --git a/textures/things/mote/speechsymbols/trainattempt.png b/Mods/Core/Textures/things/mote/speechsymbols/trainattempt.png similarity index 100% rename from textures/things/mote/speechsymbols/trainattempt.png rename to Mods/Core/Textures/things/mote/speechsymbols/trainattempt.png diff --git a/textures/things/mote/stonebit.png b/Mods/Core/Textures/things/mote/stonebit.png similarity index 100% rename from textures/things/mote/stonebit.png rename to Mods/Core/Textures/things/mote/stonebit.png diff --git a/textures/things/mote/stun.png b/Mods/Core/Textures/things/mote/stun.png similarity index 100% rename from textures/things/mote/stun.png rename to Mods/Core/Textures/things/mote/stun.png diff --git a/textures/things/mote/temproof.png b/Mods/Core/Textures/things/mote/temproof.png similarity index 100% rename from textures/things/mote/temproof.png rename to Mods/Core/Textures/things/mote/temproof.png diff --git a/textures/things/mote/thought.png b/Mods/Core/Textures/things/mote/thought.png similarity index 100% rename from textures/things/mote/thought.png rename to Mods/Core/Textures/things/mote/thought.png diff --git a/textures/things/mote/thoughtsymbol/enemy.png b/Mods/Core/Textures/things/mote/thoughtsymbol/enemy.png similarity index 100% rename from textures/things/mote/thoughtsymbol/enemy.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/enemy.png diff --git a/textures/things/mote/thoughtsymbol/food.png b/Mods/Core/Textures/things/mote/thoughtsymbol/food.png similarity index 100% rename from textures/things/mote/thoughtsymbol/food.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/food.png diff --git a/textures/things/mote/thoughtsymbol/genericbad.png b/Mods/Core/Textures/things/mote/thoughtsymbol/genericbad.png similarity index 100% rename from textures/things/mote/thoughtsymbol/genericbad.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/genericbad.png diff --git a/textures/things/mote/thoughtsymbol/genericgood.png b/Mods/Core/Textures/things/mote/thoughtsymbol/genericgood.png similarity index 100% rename from textures/things/mote/thoughtsymbol/genericgood.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/genericgood.png diff --git a/textures/things/mote/thoughtsymbol/skull.png b/Mods/Core/Textures/things/mote/thoughtsymbol/skull.png similarity index 100% rename from textures/things/mote/thoughtsymbol/skull.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/skull.png diff --git a/textures/things/mote/thoughtsymbol/sleepz.png b/Mods/Core/Textures/things/mote/thoughtsymbol/sleepz.png similarity index 100% rename from textures/things/mote/thoughtsymbol/sleepz.png rename to Mods/Core/Textures/things/mote/thoughtsymbol/sleepz.png diff --git a/textures/things/mote/transparent.png b/Mods/Core/Textures/things/mote/transparent.png similarity index 100% rename from textures/things/mote/transparent.png rename to Mods/Core/Textures/things/mote/transparent.png diff --git a/textures/things/mote/vomitbit.png b/Mods/Core/Textures/things/mote/vomitbit.png similarity index 100% rename from textures/things/mote/vomitbit.png rename to Mods/Core/Textures/things/mote/vomitbit.png diff --git a/textures/things/pawn/animal/alpaca/Alpaca_east.png b/Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_east.png similarity index 100% rename from textures/things/pawn/animal/alpaca/Alpaca_east.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_east.png diff --git a/textures/things/pawn/animal/alpaca/Alpaca_north.png b/Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_north.png similarity index 100% rename from textures/things/pawn/animal/alpaca/Alpaca_north.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_north.png diff --git a/textures/things/pawn/animal/alpaca/Alpaca_south.png b/Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_south.png similarity index 100% rename from textures/things/pawn/animal/alpaca/Alpaca_south.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/Alpaca_south.png diff --git a/textures/things/pawn/animal/alpaca/alpaca_back.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_back.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpaca_back.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_back.png diff --git a/textures/things/pawn/animal/alpaca/alpaca_front.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_front.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpaca_front.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_front.png diff --git a/textures/things/pawn/animal/alpaca/alpaca_side.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_side.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpaca_side.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpaca_side.png diff --git a/textures/things/pawn/animal/alpaca/alpacapack_back.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_back.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpacapack_back.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_back.png diff --git a/textures/things/pawn/animal/alpaca/alpacapack_front.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_front.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpacapack_front.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_front.png diff --git a/textures/things/pawn/animal/alpaca/alpacapack_side.png b/Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_side.png similarity index 100% rename from textures/things/pawn/animal/alpaca/alpacapack_side.png rename to Mods/Core/Textures/things/pawn/animal/alpaca/alpacapack_side.png diff --git a/textures/things/pawn/animal/bear/Bear_east.png b/Mods/Core/Textures/things/pawn/animal/bear/Bear_east.png similarity index 100% rename from textures/things/pawn/animal/bear/Bear_east.png rename to Mods/Core/Textures/things/pawn/animal/bear/Bear_east.png diff --git a/textures/things/pawn/animal/bear/Bear_north.png b/Mods/Core/Textures/things/pawn/animal/bear/Bear_north.png similarity index 100% rename from textures/things/pawn/animal/bear/Bear_north.png rename to Mods/Core/Textures/things/pawn/animal/bear/Bear_north.png diff --git a/textures/things/pawn/animal/bear/Bear_south.png b/Mods/Core/Textures/things/pawn/animal/bear/Bear_south.png similarity index 100% rename from textures/things/pawn/animal/bear/Bear_south.png rename to Mods/Core/Textures/things/pawn/animal/bear/Bear_south.png diff --git a/textures/things/pawn/animal/bear/bear_back.png b/Mods/Core/Textures/things/pawn/animal/bear/bear_back.png similarity index 100% rename from textures/things/pawn/animal/bear/bear_back.png rename to Mods/Core/Textures/things/pawn/animal/bear/bear_back.png diff --git a/textures/things/pawn/animal/bear/bear_front.png b/Mods/Core/Textures/things/pawn/animal/bear/bear_front.png similarity index 100% rename from textures/things/pawn/animal/bear/bear_front.png rename to Mods/Core/Textures/things/pawn/animal/bear/bear_front.png diff --git a/textures/things/pawn/animal/bear/bear_side.png b/Mods/Core/Textures/things/pawn/animal/bear/bear_side.png similarity index 100% rename from textures/things/pawn/animal/bear/bear_side.png rename to Mods/Core/Textures/things/pawn/animal/bear/bear_side.png diff --git a/textures/things/pawn/animal/beaver/beaver_back.png b/Mods/Core/Textures/things/pawn/animal/beaver/beaver_back.png similarity index 100% rename from textures/things/pawn/animal/beaver/beaver_back.png rename to Mods/Core/Textures/things/pawn/animal/beaver/beaver_back.png diff --git a/textures/things/pawn/animal/beaver/beaver_front.png b/Mods/Core/Textures/things/pawn/animal/beaver/beaver_front.png similarity index 100% rename from textures/things/pawn/animal/beaver/beaver_front.png rename to Mods/Core/Textures/things/pawn/animal/beaver/beaver_front.png diff --git a/textures/things/pawn/animal/beaver/beaver_side.png b/Mods/Core/Textures/things/pawn/animal/beaver/beaver_side.png similarity index 100% rename from textures/things/pawn/animal/beaver/beaver_side.png rename to Mods/Core/Textures/things/pawn/animal/beaver/beaver_side.png diff --git a/textures/things/pawn/animal/bison/BisonPack_east.png b/Mods/Core/Textures/things/pawn/animal/bison/BisonPack_east.png similarity index 100% rename from textures/things/pawn/animal/bison/BisonPack_east.png rename to Mods/Core/Textures/things/pawn/animal/bison/BisonPack_east.png diff --git a/textures/things/pawn/animal/bison/BisonPack_north.png b/Mods/Core/Textures/things/pawn/animal/bison/BisonPack_north.png similarity index 100% rename from textures/things/pawn/animal/bison/BisonPack_north.png rename to Mods/Core/Textures/things/pawn/animal/bison/BisonPack_north.png diff --git a/textures/things/pawn/animal/bison/Bison_east.png b/Mods/Core/Textures/things/pawn/animal/bison/Bison_east.png similarity index 100% rename from textures/things/pawn/animal/bison/Bison_east.png rename to Mods/Core/Textures/things/pawn/animal/bison/Bison_east.png diff --git a/textures/things/pawn/animal/bison/Bison_north.png b/Mods/Core/Textures/things/pawn/animal/bison/Bison_north.png similarity index 100% rename from textures/things/pawn/animal/bison/Bison_north.png rename to Mods/Core/Textures/things/pawn/animal/bison/Bison_north.png diff --git a/textures/things/pawn/animal/bison/Bison_south.png b/Mods/Core/Textures/things/pawn/animal/bison/Bison_south.png similarity index 100% rename from textures/things/pawn/animal/bison/Bison_south.png rename to Mods/Core/Textures/things/pawn/animal/bison/Bison_south.png diff --git a/textures/things/pawn/animal/bison/Dessicated_Bison_east.png b/Mods/Core/Textures/things/pawn/animal/bison/Dessicated_Bison_east.png similarity index 100% rename from textures/things/pawn/animal/bison/Dessicated_Bison_east.png rename to Mods/Core/Textures/things/pawn/animal/bison/Dessicated_Bison_east.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_east.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_east.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_east.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_east.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_eastm.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_eastm.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_eastm.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_eastm.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_north.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_north.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_north.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_north.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_northm.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_northm.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_northm.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_northm.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_south.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_south.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_south.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_south.png diff --git a/textures/things/pawn/animal/boomalope/Boomalope_southm.png b/Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_southm.png similarity index 100% rename from textures/things/pawn/animal/boomalope/Boomalope_southm.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/Boomalope_southm.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_back.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_back.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_back.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_back.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_backm.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_backm.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_backm.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_backm.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_front.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_front.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_front.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_front.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_frontm.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_frontm.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_frontm.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_frontm.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_side.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_side.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_side.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_side.png diff --git a/textures/things/pawn/animal/boomalope/boomalope_sidem.png b/Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_sidem.png similarity index 100% rename from textures/things/pawn/animal/boomalope/boomalope_sidem.png rename to Mods/Core/Textures/things/pawn/animal/boomalope/boomalope_sidem.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_east.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_east.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_east.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_east.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_eastm.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_eastm.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_eastm.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_eastm.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_north.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_north.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_north.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_north.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_northm.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_northm.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_northm.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_northm.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_south.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_south.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_south.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_south.png diff --git a/textures/things/pawn/animal/boomrat/Boomrat_southm.png b/Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_southm.png similarity index 100% rename from textures/things/pawn/animal/boomrat/Boomrat_southm.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/Boomrat_southm.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_back.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_back.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_back.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_back.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_backm.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_backm.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_backm.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_backm.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_front.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_front.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_front.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_front.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_frontm.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_frontm.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_frontm.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_frontm.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_side.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_side.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_side.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_side.png diff --git a/textures/things/pawn/animal/boomrat/boomrat_sidem.png b/Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_sidem.png similarity index 100% rename from textures/things/pawn/animal/boomrat/boomrat_sidem.png rename to Mods/Core/Textures/things/pawn/animal/boomrat/boomrat_sidem.png diff --git a/textures/things/pawn/animal/capybara/Capybara_east.png b/Mods/Core/Textures/things/pawn/animal/capybara/Capybara_east.png similarity index 100% rename from textures/things/pawn/animal/capybara/Capybara_east.png rename to Mods/Core/Textures/things/pawn/animal/capybara/Capybara_east.png diff --git a/textures/things/pawn/animal/capybara/Capybara_north.png b/Mods/Core/Textures/things/pawn/animal/capybara/Capybara_north.png similarity index 100% rename from textures/things/pawn/animal/capybara/Capybara_north.png rename to Mods/Core/Textures/things/pawn/animal/capybara/Capybara_north.png diff --git a/textures/things/pawn/animal/capybara/Capybara_south.png b/Mods/Core/Textures/things/pawn/animal/capybara/Capybara_south.png similarity index 100% rename from textures/things/pawn/animal/capybara/Capybara_south.png rename to Mods/Core/Textures/things/pawn/animal/capybara/Capybara_south.png diff --git a/textures/things/pawn/animal/capybara/capybara_back.png b/Mods/Core/Textures/things/pawn/animal/capybara/capybara_back.png similarity index 100% rename from textures/things/pawn/animal/capybara/capybara_back.png rename to Mods/Core/Textures/things/pawn/animal/capybara/capybara_back.png diff --git a/textures/things/pawn/animal/capybara/capybara_front.png b/Mods/Core/Textures/things/pawn/animal/capybara/capybara_front.png similarity index 100% rename from textures/things/pawn/animal/capybara/capybara_front.png rename to Mods/Core/Textures/things/pawn/animal/capybara/capybara_front.png diff --git a/textures/things/pawn/animal/capybara/capybara_side.png b/Mods/Core/Textures/things/pawn/animal/capybara/capybara_side.png similarity index 100% rename from textures/things/pawn/animal/capybara/capybara_side.png rename to Mods/Core/Textures/things/pawn/animal/capybara/capybara_side.png diff --git a/textures/things/pawn/animal/caribou/Caribou_east.png b/Mods/Core/Textures/things/pawn/animal/caribou/Caribou_east.png similarity index 100% rename from textures/things/pawn/animal/caribou/Caribou_east.png rename to Mods/Core/Textures/things/pawn/animal/caribou/Caribou_east.png diff --git a/textures/things/pawn/animal/caribou/Caribou_north.png b/Mods/Core/Textures/things/pawn/animal/caribou/Caribou_north.png similarity index 100% rename from textures/things/pawn/animal/caribou/Caribou_north.png rename to Mods/Core/Textures/things/pawn/animal/caribou/Caribou_north.png diff --git a/textures/things/pawn/animal/caribou/Caribou_south.png b/Mods/Core/Textures/things/pawn/animal/caribou/Caribou_south.png similarity index 100% rename from textures/things/pawn/animal/caribou/Caribou_south.png rename to Mods/Core/Textures/things/pawn/animal/caribou/Caribou_south.png diff --git a/textures/things/pawn/animal/caribou/caribou_back.png b/Mods/Core/Textures/things/pawn/animal/caribou/caribou_back.png similarity index 100% rename from textures/things/pawn/animal/caribou/caribou_back.png rename to Mods/Core/Textures/things/pawn/animal/caribou/caribou_back.png diff --git a/textures/things/pawn/animal/caribou/caribou_front.png b/Mods/Core/Textures/things/pawn/animal/caribou/caribou_front.png similarity index 100% rename from textures/things/pawn/animal/caribou/caribou_front.png rename to Mods/Core/Textures/things/pawn/animal/caribou/caribou_front.png diff --git a/textures/things/pawn/animal/caribou/caribou_side.png b/Mods/Core/Textures/things/pawn/animal/caribou/caribou_side.png similarity index 100% rename from textures/things/pawn/animal/caribou/caribou_side.png rename to Mods/Core/Textures/things/pawn/animal/caribou/caribou_side.png diff --git a/textures/things/pawn/animal/cassowary/cassowary_back.png b/Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_back.png similarity index 100% rename from textures/things/pawn/animal/cassowary/cassowary_back.png rename to Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_back.png diff --git a/textures/things/pawn/animal/cassowary/cassowary_front.png b/Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_front.png similarity index 100% rename from textures/things/pawn/animal/cassowary/cassowary_front.png rename to Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_front.png diff --git a/textures/things/pawn/animal/cassowary/cassowary_side.png b/Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_side.png similarity index 100% rename from textures/things/pawn/animal/cassowary/cassowary_side.png rename to Mods/Core/Textures/things/pawn/animal/cassowary/cassowary_side.png diff --git a/textures/things/pawn/animal/cat/Cat_east.png b/Mods/Core/Textures/things/pawn/animal/cat/Cat_east.png similarity index 100% rename from textures/things/pawn/animal/cat/Cat_east.png rename to Mods/Core/Textures/things/pawn/animal/cat/Cat_east.png diff --git a/textures/things/pawn/animal/cat/Cat_north.png b/Mods/Core/Textures/things/pawn/animal/cat/Cat_north.png similarity index 100% rename from textures/things/pawn/animal/cat/Cat_north.png rename to Mods/Core/Textures/things/pawn/animal/cat/Cat_north.png diff --git a/textures/things/pawn/animal/cat/Cat_south.png b/Mods/Core/Textures/things/pawn/animal/cat/Cat_south.png similarity index 100% rename from textures/things/pawn/animal/cat/Cat_south.png rename to Mods/Core/Textures/things/pawn/animal/cat/Cat_south.png diff --git a/textures/things/pawn/animal/cat/cat_back.png b/Mods/Core/Textures/things/pawn/animal/cat/cat_back.png similarity index 100% rename from textures/things/pawn/animal/cat/cat_back.png rename to Mods/Core/Textures/things/pawn/animal/cat/cat_back.png diff --git a/textures/things/pawn/animal/cat/cat_front.png b/Mods/Core/Textures/things/pawn/animal/cat/cat_front.png similarity index 100% rename from textures/things/pawn/animal/cat/cat_front.png rename to Mods/Core/Textures/things/pawn/animal/cat/cat_front.png diff --git a/textures/things/pawn/animal/cat/cat_side.png b/Mods/Core/Textures/things/pawn/animal/cat/cat_side.png similarity index 100% rename from textures/things/pawn/animal/cat/cat_side.png rename to Mods/Core/Textures/things/pawn/animal/cat/cat_side.png diff --git a/textures/things/pawn/animal/chicken/Chicken_east.png b/Mods/Core/Textures/things/pawn/animal/chicken/Chicken_east.png similarity index 100% rename from textures/things/pawn/animal/chicken/Chicken_east.png rename to Mods/Core/Textures/things/pawn/animal/chicken/Chicken_east.png diff --git a/textures/things/pawn/animal/chicken/Chicken_north.png b/Mods/Core/Textures/things/pawn/animal/chicken/Chicken_north.png similarity index 100% rename from textures/things/pawn/animal/chicken/Chicken_north.png rename to Mods/Core/Textures/things/pawn/animal/chicken/Chicken_north.png diff --git a/textures/things/pawn/animal/chicken/Chicken_south.png b/Mods/Core/Textures/things/pawn/animal/chicken/Chicken_south.png similarity index 100% rename from textures/things/pawn/animal/chicken/Chicken_south.png rename to Mods/Core/Textures/things/pawn/animal/chicken/Chicken_south.png diff --git a/textures/things/pawn/animal/chicken/chicken_back.png b/Mods/Core/Textures/things/pawn/animal/chicken/chicken_back.png similarity index 100% rename from textures/things/pawn/animal/chicken/chicken_back.png rename to Mods/Core/Textures/things/pawn/animal/chicken/chicken_back.png diff --git a/textures/things/pawn/animal/chicken/chicken_front.png b/Mods/Core/Textures/things/pawn/animal/chicken/chicken_front.png similarity index 100% rename from textures/things/pawn/animal/chicken/chicken_front.png rename to Mods/Core/Textures/things/pawn/animal/chicken/chicken_front.png diff --git a/textures/things/pawn/animal/chicken/chicken_side.png b/Mods/Core/Textures/things/pawn/animal/chicken/chicken_side.png similarity index 100% rename from textures/things/pawn/animal/chicken/chicken_side.png rename to Mods/Core/Textures/things/pawn/animal/chicken/chicken_side.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_east.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_east.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_east.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_east.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_eastm.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_eastm.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_eastm.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_eastm.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_north.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_north.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_north.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_north.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_northm.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_northm.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_northm.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_northm.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_south.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_south.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_south.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_south.png diff --git a/textures/things/pawn/animal/chinchilla/Chinchilla_southm.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_southm.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/Chinchilla_southm.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/Chinchilla_southm.png diff --git a/textures/things/pawn/animal/chinchilla/chinchilla_back.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_back.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/chinchilla_back.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_back.png diff --git a/textures/things/pawn/animal/chinchilla/chinchilla_front.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_front.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/chinchilla_front.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_front.png diff --git a/textures/things/pawn/animal/chinchilla/chinchilla_side.png b/Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_side.png similarity index 100% rename from textures/things/pawn/animal/chinchilla/chinchilla_side.png rename to Mods/Core/Textures/things/pawn/animal/chinchilla/chinchilla_side.png diff --git a/textures/things/pawn/animal/cobra/cobra_back.png b/Mods/Core/Textures/things/pawn/animal/cobra/cobra_back.png similarity index 100% rename from textures/things/pawn/animal/cobra/cobra_back.png rename to Mods/Core/Textures/things/pawn/animal/cobra/cobra_back.png diff --git a/textures/things/pawn/animal/cobra/cobra_front.png b/Mods/Core/Textures/things/pawn/animal/cobra/cobra_front.png similarity index 100% rename from textures/things/pawn/animal/cobra/cobra_front.png rename to Mods/Core/Textures/things/pawn/animal/cobra/cobra_front.png diff --git a/textures/things/pawn/animal/cobra/cobra_side.png b/Mods/Core/Textures/things/pawn/animal/cobra/cobra_side.png similarity index 100% rename from textures/things/pawn/animal/cobra/cobra_side.png rename to Mods/Core/Textures/things/pawn/animal/cobra/cobra_side.png diff --git a/textures/things/pawn/animal/cougar/Cougar_east.png b/Mods/Core/Textures/things/pawn/animal/cougar/Cougar_east.png similarity index 100% rename from textures/things/pawn/animal/cougar/Cougar_east.png rename to Mods/Core/Textures/things/pawn/animal/cougar/Cougar_east.png diff --git a/textures/things/pawn/animal/cougar/Cougar_north.png b/Mods/Core/Textures/things/pawn/animal/cougar/Cougar_north.png similarity index 100% rename from textures/things/pawn/animal/cougar/Cougar_north.png rename to Mods/Core/Textures/things/pawn/animal/cougar/Cougar_north.png diff --git a/textures/things/pawn/animal/cougar/Cougar_south.png b/Mods/Core/Textures/things/pawn/animal/cougar/Cougar_south.png similarity index 100% rename from textures/things/pawn/animal/cougar/Cougar_south.png rename to Mods/Core/Textures/things/pawn/animal/cougar/Cougar_south.png diff --git a/textures/things/pawn/animal/cougar/cougar_back.png b/Mods/Core/Textures/things/pawn/animal/cougar/cougar_back.png similarity index 100% rename from textures/things/pawn/animal/cougar/cougar_back.png rename to Mods/Core/Textures/things/pawn/animal/cougar/cougar_back.png diff --git a/textures/things/pawn/animal/cougar/cougar_front.png b/Mods/Core/Textures/things/pawn/animal/cougar/cougar_front.png similarity index 100% rename from textures/things/pawn/animal/cougar/cougar_front.png rename to Mods/Core/Textures/things/pawn/animal/cougar/cougar_front.png diff --git a/textures/things/pawn/animal/cougar/cougar_side.png b/Mods/Core/Textures/things/pawn/animal/cougar/cougar_side.png similarity index 100% rename from textures/things/pawn/animal/cougar/cougar_side.png rename to Mods/Core/Textures/things/pawn/animal/cougar/cougar_side.png diff --git a/textures/things/pawn/animal/cow/Bull_east.png b/Mods/Core/Textures/things/pawn/animal/cow/Bull_east.png similarity index 100% rename from textures/things/pawn/animal/cow/Bull_east.png rename to Mods/Core/Textures/things/pawn/animal/cow/Bull_east.png diff --git a/textures/things/pawn/animal/cow/Bull_north.png b/Mods/Core/Textures/things/pawn/animal/cow/Bull_north.png similarity index 100% rename from textures/things/pawn/animal/cow/Bull_north.png rename to Mods/Core/Textures/things/pawn/animal/cow/Bull_north.png diff --git a/textures/things/pawn/animal/cow/Bull_south.png b/Mods/Core/Textures/things/pawn/animal/cow/Bull_south.png similarity index 100% rename from textures/things/pawn/animal/cow/Bull_south.png rename to Mods/Core/Textures/things/pawn/animal/cow/Bull_south.png diff --git a/textures/things/pawn/animal/cow/Cow_east.png b/Mods/Core/Textures/things/pawn/animal/cow/Cow_east.png similarity index 100% rename from textures/things/pawn/animal/cow/Cow_east.png rename to Mods/Core/Textures/things/pawn/animal/cow/Cow_east.png diff --git a/textures/things/pawn/animal/cow/Cow_north.png b/Mods/Core/Textures/things/pawn/animal/cow/Cow_north.png similarity index 100% rename from textures/things/pawn/animal/cow/Cow_north.png rename to Mods/Core/Textures/things/pawn/animal/cow/Cow_north.png diff --git a/textures/things/pawn/animal/cow/Cow_south.png b/Mods/Core/Textures/things/pawn/animal/cow/Cow_south.png similarity index 100% rename from textures/things/pawn/animal/cow/Cow_south.png rename to Mods/Core/Textures/things/pawn/animal/cow/Cow_south.png diff --git a/textures/things/pawn/animal/cow/bull_back.png b/Mods/Core/Textures/things/pawn/animal/cow/bull_back.png similarity index 100% rename from textures/things/pawn/animal/cow/bull_back.png rename to Mods/Core/Textures/things/pawn/animal/cow/bull_back.png diff --git a/textures/things/pawn/animal/cow/bull_front.png b/Mods/Core/Textures/things/pawn/animal/cow/bull_front.png similarity index 100% rename from textures/things/pawn/animal/cow/bull_front.png rename to Mods/Core/Textures/things/pawn/animal/cow/bull_front.png diff --git a/textures/things/pawn/animal/cow/bull_side.png b/Mods/Core/Textures/things/pawn/animal/cow/bull_side.png similarity index 100% rename from textures/things/pawn/animal/cow/bull_side.png rename to Mods/Core/Textures/things/pawn/animal/cow/bull_side.png diff --git a/textures/things/pawn/animal/cow/cow_back.png b/Mods/Core/Textures/things/pawn/animal/cow/cow_back.png similarity index 100% rename from textures/things/pawn/animal/cow/cow_back.png rename to Mods/Core/Textures/things/pawn/animal/cow/cow_back.png diff --git a/textures/things/pawn/animal/cow/cow_front.png b/Mods/Core/Textures/things/pawn/animal/cow/cow_front.png similarity index 100% rename from textures/things/pawn/animal/cow/cow_front.png rename to Mods/Core/Textures/things/pawn/animal/cow/cow_front.png diff --git a/textures/things/pawn/animal/cow/cow_side.png b/Mods/Core/Textures/things/pawn/animal/cow/cow_side.png similarity index 100% rename from textures/things/pawn/animal/cow/cow_side.png rename to Mods/Core/Textures/things/pawn/animal/cow/cow_side.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_east.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_east.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_east.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_eastm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_eastm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_eastm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_eastm.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_north.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_north.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_north.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_north.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_northm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_northm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_northm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_northm.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_south.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_south.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_south.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_south.png diff --git a/textures/things/pawn/animal/deer/DeerBaby_southm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_southm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerBaby_southm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerBaby_southm.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_east.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_east.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_east.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_eastm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_eastm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_eastm.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_north.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_north.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_north.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_northm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_northm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_northm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_northm.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_south.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_south.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_south.png diff --git a/textures/things/pawn/animal/deer/DeerFemale_southm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_southm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerFemale_southm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerFemale_southm.png diff --git a/textures/things/pawn/animal/deer/DeerMale_east.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_east.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_east.png diff --git a/textures/things/pawn/animal/deer/DeerMale_eastm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_eastm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_eastm.png diff --git a/textures/things/pawn/animal/deer/DeerMale_north.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_north.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_north.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_north.png diff --git a/textures/things/pawn/animal/deer/DeerMale_northm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_northm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_northm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_northm.png diff --git a/textures/things/pawn/animal/deer/DeerMale_south.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_south.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_south.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_south.png diff --git a/textures/things/pawn/animal/deer/DeerMale_southm.png b/Mods/Core/Textures/things/pawn/animal/deer/DeerMale_southm.png similarity index 100% rename from textures/things/pawn/animal/deer/DeerMale_southm.png rename to Mods/Core/Textures/things/pawn/animal/deer/DeerMale_southm.png diff --git a/textures/things/pawn/animal/deer/Dessicated_DeerBaby_east.png b/Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerBaby_east.png similarity index 100% rename from textures/things/pawn/animal/deer/Dessicated_DeerBaby_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerBaby_east.png diff --git a/textures/things/pawn/animal/deer/Dessicated_DeerFemale_east.png b/Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerFemale_east.png similarity index 100% rename from textures/things/pawn/animal/deer/Dessicated_DeerFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerFemale_east.png diff --git a/textures/things/pawn/animal/deer/Dessicated_DeerMale_east.png b/Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerMale_east.png similarity index 100% rename from textures/things/pawn/animal/deer/Dessicated_DeerMale_east.png rename to Mods/Core/Textures/things/pawn/animal/deer/Dessicated_DeerMale_east.png diff --git a/textures/things/pawn/animal/deer/deerbaby_back.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_back.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_back.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_back.png diff --git a/textures/things/pawn/animal/deer/deerbaby_backm.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_backm.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_backm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_backm.png diff --git a/textures/things/pawn/animal/deer/deerbaby_front.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_front.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_front.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_front.png diff --git a/textures/things/pawn/animal/deer/deerbaby_frontm.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_frontm.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_frontm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_frontm.png diff --git a/textures/things/pawn/animal/deer/deerbaby_side.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_side.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_side.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_side.png diff --git a/textures/things/pawn/animal/deer/deerbaby_sidem.png b/Mods/Core/Textures/things/pawn/animal/deer/deerbaby_sidem.png similarity index 100% rename from textures/things/pawn/animal/deer/deerbaby_sidem.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerbaby_sidem.png diff --git a/textures/things/pawn/animal/deer/deerfemale_back.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_back.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_back.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_back.png diff --git a/textures/things/pawn/animal/deer/deerfemale_backm.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_backm.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_backm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_backm.png diff --git a/textures/things/pawn/animal/deer/deerfemale_front.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_front.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_front.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_front.png diff --git a/textures/things/pawn/animal/deer/deerfemale_frontm.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_frontm.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_frontm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_frontm.png diff --git a/textures/things/pawn/animal/deer/deerfemale_side.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_side.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_side.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_side.png diff --git a/textures/things/pawn/animal/deer/deerfemale_sidem.png b/Mods/Core/Textures/things/pawn/animal/deer/deerfemale_sidem.png similarity index 100% rename from textures/things/pawn/animal/deer/deerfemale_sidem.png rename to Mods/Core/Textures/things/pawn/animal/deer/deerfemale_sidem.png diff --git a/textures/things/pawn/animal/deer/deermale_back.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_back.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_back.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_back.png diff --git a/textures/things/pawn/animal/deer/deermale_backm.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_backm.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_backm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_backm.png diff --git a/textures/things/pawn/animal/deer/deermale_front.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_front.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_front.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_front.png diff --git a/textures/things/pawn/animal/deer/deermale_frontm.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_frontm.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_frontm.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_frontm.png diff --git a/textures/things/pawn/animal/deer/deermale_side.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_side.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_side.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_side.png diff --git a/textures/things/pawn/animal/deer/deermale_sidem.png b/Mods/Core/Textures/things/pawn/animal/deer/deermale_sidem.png similarity index 100% rename from textures/things/pawn/animal/deer/deermale_sidem.png rename to Mods/Core/Textures/things/pawn/animal/deer/deermale_sidem.png diff --git a/textures/things/pawn/animal/dessicated/critterdessicatedmedium_back.png b/Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedmedium_back.png similarity index 100% rename from textures/things/pawn/animal/dessicated/critterdessicatedmedium_back.png rename to Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedmedium_back.png diff --git a/textures/things/pawn/animal/dessicated/critterdessicatedsmall_back.png b/Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedsmall_back.png similarity index 100% rename from textures/things/pawn/animal/dessicated/critterdessicatedsmall_back.png rename to Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedsmall_back.png diff --git a/textures/things/pawn/animal/dessicated/critterdessicatedsnake_back.png b/Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedsnake_back.png similarity index 100% rename from textures/things/pawn/animal/dessicated/critterdessicatedsnake_back.png rename to Mods/Core/Textures/things/pawn/animal/dessicated/critterdessicatedsnake_back.png diff --git a/textures/things/pawn/animal/donkey/Dessicated_Donkey_east.png b/Mods/Core/Textures/things/pawn/animal/donkey/Dessicated_Donkey_east.png similarity index 100% rename from textures/things/pawn/animal/donkey/Dessicated_Donkey_east.png rename to Mods/Core/Textures/things/pawn/animal/donkey/Dessicated_Donkey_east.png diff --git a/textures/things/pawn/animal/donkey/DonkeyPack_east.png b/Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_east.png similarity index 100% rename from textures/things/pawn/animal/donkey/DonkeyPack_east.png rename to Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_east.png diff --git a/textures/things/pawn/animal/donkey/DonkeyPack_north.png b/Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_north.png similarity index 100% rename from textures/things/pawn/animal/donkey/DonkeyPack_north.png rename to Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_north.png diff --git a/textures/things/pawn/animal/donkey/DonkeyPack_south.png b/Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_south.png similarity index 100% rename from textures/things/pawn/animal/donkey/DonkeyPack_south.png rename to Mods/Core/Textures/things/pawn/animal/donkey/DonkeyPack_south.png diff --git a/textures/things/pawn/animal/donkey/Donkey_east.png b/Mods/Core/Textures/things/pawn/animal/donkey/Donkey_east.png similarity index 100% rename from textures/things/pawn/animal/donkey/Donkey_east.png rename to Mods/Core/Textures/things/pawn/animal/donkey/Donkey_east.png diff --git a/textures/things/pawn/animal/donkey/Donkey_north.png b/Mods/Core/Textures/things/pawn/animal/donkey/Donkey_north.png similarity index 100% rename from textures/things/pawn/animal/donkey/Donkey_north.png rename to Mods/Core/Textures/things/pawn/animal/donkey/Donkey_north.png diff --git a/textures/things/pawn/animal/donkey/Donkey_south.png b/Mods/Core/Textures/things/pawn/animal/donkey/Donkey_south.png similarity index 100% rename from textures/things/pawn/animal/donkey/Donkey_south.png rename to Mods/Core/Textures/things/pawn/animal/donkey/Donkey_south.png diff --git a/textures/things/pawn/animal/dromedary/Dromedary_east.png b/Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_east.png similarity index 100% rename from textures/things/pawn/animal/dromedary/Dromedary_east.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_east.png diff --git a/textures/things/pawn/animal/dromedary/Dromedary_north.png b/Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_north.png similarity index 100% rename from textures/things/pawn/animal/dromedary/Dromedary_north.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_north.png diff --git a/textures/things/pawn/animal/dromedary/Dromedary_south.png b/Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_south.png similarity index 100% rename from textures/things/pawn/animal/dromedary/Dromedary_south.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/Dromedary_south.png diff --git a/textures/things/pawn/animal/dromedary/dromedary_back.png b/Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_back.png similarity index 100% rename from textures/things/pawn/animal/dromedary/dromedary_back.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_back.png diff --git a/textures/things/pawn/animal/dromedary/dromedary_front.png b/Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_front.png similarity index 100% rename from textures/things/pawn/animal/dromedary/dromedary_front.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_front.png diff --git a/textures/things/pawn/animal/dromedary/dromedary_side.png b/Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_side.png similarity index 100% rename from textures/things/pawn/animal/dromedary/dromedary_side.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/dromedary_side.png diff --git a/textures/things/pawn/animal/dromedary/dromedarypack_back.png b/Mods/Core/Textures/things/pawn/animal/dromedary/dromedarypack_back.png similarity index 100% rename from textures/things/pawn/animal/dromedary/dromedarypack_back.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/dromedarypack_back.png diff --git a/textures/things/pawn/animal/dromedary/dromedarypack_side.png b/Mods/Core/Textures/things/pawn/animal/dromedary/dromedarypack_side.png similarity index 100% rename from textures/things/pawn/animal/dromedary/dromedarypack_side.png rename to Mods/Core/Textures/things/pawn/animal/dromedary/dromedarypack_side.png diff --git a/textures/things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east.png b/Mods/Core/Textures/things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east.png similarity index 100% rename from textures/things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east.png rename to Mods/Core/Textures/things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east.png diff --git a/textures/things/pawn/animal/dryad_carrier/DryadCarrier_east.png b/Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_east.png similarity index 100% rename from textures/things/pawn/animal/dryad_carrier/DryadCarrier_east.png rename to Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_east.png diff --git a/textures/things/pawn/animal/dryad_carrier/DryadCarrier_north.png b/Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_north.png similarity index 100% rename from textures/things/pawn/animal/dryad_carrier/DryadCarrier_north.png rename to Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_north.png diff --git a/textures/things/pawn/animal/dryad_carrier/DryadCarrier_south.png b/Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_south.png similarity index 100% rename from textures/things/pawn/animal/dryad_carrier/DryadCarrier_south.png rename to Mods/Core/Textures/things/pawn/animal/dryad_carrier/DryadCarrier_south.png diff --git a/textures/things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east.png b/Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east.png similarity index 100% rename from textures/things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east.png rename to Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east.png diff --git a/textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east.png b/Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east.png similarity index 100% rename from textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east.png rename to Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east.png diff --git a/textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north.png b/Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north.png similarity index 100% rename from textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north.png rename to Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north.png diff --git a/textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south.png b/Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south.png similarity index 100% rename from textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south.png rename to Mods/Core/Textures/things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south.png diff --git a/textures/things/pawn/animal/duck/DuckFemale_east.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_east.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_east.png diff --git a/textures/things/pawn/animal/duck/DuckFemale_north.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_north.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_north.png diff --git a/textures/things/pawn/animal/duck/DuckFemale_south.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_south.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckFemale_south.png diff --git a/textures/things/pawn/animal/duck/DuckMale_east.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckMale_east.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckMale_east.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckMale_east.png diff --git a/textures/things/pawn/animal/duck/DuckMale_north.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckMale_north.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckMale_north.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckMale_north.png diff --git a/textures/things/pawn/animal/duck/DuckMale_south.png b/Mods/Core/Textures/things/pawn/animal/duck/DuckMale_south.png similarity index 100% rename from textures/things/pawn/animal/duck/DuckMale_south.png rename to Mods/Core/Textures/things/pawn/animal/duck/DuckMale_south.png diff --git a/textures/things/pawn/animal/elephant/Elephant_east.png b/Mods/Core/Textures/things/pawn/animal/elephant/Elephant_east.png similarity index 100% rename from textures/things/pawn/animal/elephant/Elephant_east.png rename to Mods/Core/Textures/things/pawn/animal/elephant/Elephant_east.png diff --git a/textures/things/pawn/animal/elephant/Elephant_north.png b/Mods/Core/Textures/things/pawn/animal/elephant/Elephant_north.png similarity index 100% rename from textures/things/pawn/animal/elephant/Elephant_north.png rename to Mods/Core/Textures/things/pawn/animal/elephant/Elephant_north.png diff --git a/textures/things/pawn/animal/elephant/Elephant_south.png b/Mods/Core/Textures/things/pawn/animal/elephant/Elephant_south.png similarity index 100% rename from textures/things/pawn/animal/elephant/Elephant_south.png rename to Mods/Core/Textures/things/pawn/animal/elephant/Elephant_south.png diff --git a/textures/things/pawn/animal/elephant/elephant_back.png b/Mods/Core/Textures/things/pawn/animal/elephant/elephant_back.png similarity index 100% rename from textures/things/pawn/animal/elephant/elephant_back.png rename to Mods/Core/Textures/things/pawn/animal/elephant/elephant_back.png diff --git a/textures/things/pawn/animal/elephant/elephant_front.png b/Mods/Core/Textures/things/pawn/animal/elephant/elephant_front.png similarity index 100% rename from textures/things/pawn/animal/elephant/elephant_front.png rename to Mods/Core/Textures/things/pawn/animal/elephant/elephant_front.png diff --git a/textures/things/pawn/animal/elephant/elephant_side.png b/Mods/Core/Textures/things/pawn/animal/elephant/elephant_side.png similarity index 100% rename from textures/things/pawn/animal/elephant/elephant_side.png rename to Mods/Core/Textures/things/pawn/animal/elephant/elephant_side.png diff --git a/textures/things/pawn/animal/elk/ElkFemale_east.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_east.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_east.png diff --git a/textures/things/pawn/animal/elk/ElkFemale_north.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_north.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_north.png diff --git a/textures/things/pawn/animal/elk/ElkFemale_south.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_south.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkFemale_south.png diff --git a/textures/things/pawn/animal/elk/ElkMale_east.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkMale_east.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkMale_east.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkMale_east.png diff --git a/textures/things/pawn/animal/elk/ElkMale_north.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkMale_north.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkMale_north.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkMale_north.png diff --git a/textures/things/pawn/animal/elk/ElkMale_south.png b/Mods/Core/Textures/things/pawn/animal/elk/ElkMale_south.png similarity index 100% rename from textures/things/pawn/animal/elk/ElkMale_south.png rename to Mods/Core/Textures/things/pawn/animal/elk/ElkMale_south.png diff --git a/textures/things/pawn/animal/elk/elkfemale_back.png b/Mods/Core/Textures/things/pawn/animal/elk/elkfemale_back.png similarity index 100% rename from textures/things/pawn/animal/elk/elkfemale_back.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkfemale_back.png diff --git a/textures/things/pawn/animal/elk/elkfemale_front.png b/Mods/Core/Textures/things/pawn/animal/elk/elkfemale_front.png similarity index 100% rename from textures/things/pawn/animal/elk/elkfemale_front.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkfemale_front.png diff --git a/textures/things/pawn/animal/elk/elkfemale_side.png b/Mods/Core/Textures/things/pawn/animal/elk/elkfemale_side.png similarity index 100% rename from textures/things/pawn/animal/elk/elkfemale_side.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkfemale_side.png diff --git a/textures/things/pawn/animal/elk/elkmale_back.png b/Mods/Core/Textures/things/pawn/animal/elk/elkmale_back.png similarity index 100% rename from textures/things/pawn/animal/elk/elkmale_back.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkmale_back.png diff --git a/textures/things/pawn/animal/elk/elkmale_front.png b/Mods/Core/Textures/things/pawn/animal/elk/elkmale_front.png similarity index 100% rename from textures/things/pawn/animal/elk/elkmale_front.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkmale_front.png diff --git a/textures/things/pawn/animal/elk/elkmale_side.png b/Mods/Core/Textures/things/pawn/animal/elk/elkmale_side.png similarity index 100% rename from textures/things/pawn/animal/elk/elkmale_side.png rename to Mods/Core/Textures/things/pawn/animal/elk/elkmale_side.png diff --git a/textures/things/pawn/animal/emu/emu_back.png b/Mods/Core/Textures/things/pawn/animal/emu/emu_back.png similarity index 100% rename from textures/things/pawn/animal/emu/emu_back.png rename to Mods/Core/Textures/things/pawn/animal/emu/emu_back.png diff --git a/textures/things/pawn/animal/emu/emu_front.png b/Mods/Core/Textures/things/pawn/animal/emu/emu_front.png similarity index 100% rename from textures/things/pawn/animal/emu/emu_front.png rename to Mods/Core/Textures/things/pawn/animal/emu/emu_front.png diff --git a/textures/things/pawn/animal/emu/emu_side.png b/Mods/Core/Textures/things/pawn/animal/emu/emu_side.png similarity index 100% rename from textures/things/pawn/animal/emu/emu_side.png rename to Mods/Core/Textures/things/pawn/animal/emu/emu_side.png diff --git a/textures/things/pawn/animal/fox_arctic/Fox_Arctic_east.png b/Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_east.png similarity index 100% rename from textures/things/pawn/animal/fox_arctic/Fox_Arctic_east.png rename to Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_east.png diff --git a/textures/things/pawn/animal/fox_arctic/Fox_Arctic_north.png b/Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_north.png similarity index 100% rename from textures/things/pawn/animal/fox_arctic/Fox_Arctic_north.png rename to Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_north.png diff --git a/textures/things/pawn/animal/fox_arctic/Fox_Arctic_south.png b/Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_south.png similarity index 100% rename from textures/things/pawn/animal/fox_arctic/Fox_Arctic_south.png rename to Mods/Core/Textures/things/pawn/animal/fox_arctic/Fox_Arctic_south.png diff --git a/textures/things/pawn/animal/fox_fennec/Fox_Fennec_east.png b/Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_east.png similarity index 100% rename from textures/things/pawn/animal/fox_fennec/Fox_Fennec_east.png rename to Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_east.png diff --git a/textures/things/pawn/animal/fox_fennec/Fox_Fennec_north.png b/Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_north.png similarity index 100% rename from textures/things/pawn/animal/fox_fennec/Fox_Fennec_north.png rename to Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_north.png diff --git a/textures/things/pawn/animal/fox_fennec/Fox_Fennec_south.png b/Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_south.png similarity index 100% rename from textures/things/pawn/animal/fox_fennec/Fox_Fennec_south.png rename to Mods/Core/Textures/things/pawn/animal/fox_fennec/Fox_Fennec_south.png diff --git a/textures/things/pawn/animal/fox_red/Fox_Red_east.png b/Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_east.png similarity index 100% rename from textures/things/pawn/animal/fox_red/Fox_Red_east.png rename to Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_east.png diff --git a/textures/things/pawn/animal/fox_red/Fox_Red_north.png b/Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_north.png similarity index 100% rename from textures/things/pawn/animal/fox_red/Fox_Red_north.png rename to Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_north.png diff --git a/textures/things/pawn/animal/fox_red/Fox_Red_south.png b/Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_south.png similarity index 100% rename from textures/things/pawn/animal/fox_red/Fox_Red_south.png rename to Mods/Core/Textures/things/pawn/animal/fox_red/Fox_Red_south.png diff --git a/textures/things/pawn/animal/foxarctic/foxarctic_back.png b/Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_back.png similarity index 100% rename from textures/things/pawn/animal/foxarctic/foxarctic_back.png rename to Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_back.png diff --git a/textures/things/pawn/animal/foxarctic/foxarctic_front.png b/Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_front.png similarity index 100% rename from textures/things/pawn/animal/foxarctic/foxarctic_front.png rename to Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_front.png diff --git a/textures/things/pawn/animal/foxarctic/foxarctic_side.png b/Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_side.png similarity index 100% rename from textures/things/pawn/animal/foxarctic/foxarctic_side.png rename to Mods/Core/Textures/things/pawn/animal/foxarctic/foxarctic_side.png diff --git a/textures/things/pawn/animal/foxfennec/foxfennec_back.png b/Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_back.png similarity index 100% rename from textures/things/pawn/animal/foxfennec/foxfennec_back.png rename to Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_back.png diff --git a/textures/things/pawn/animal/foxfennec/foxfennec_front.png b/Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_front.png similarity index 100% rename from textures/things/pawn/animal/foxfennec/foxfennec_front.png rename to Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_front.png diff --git a/textures/things/pawn/animal/foxfennec/foxfennec_side.png b/Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_side.png similarity index 100% rename from textures/things/pawn/animal/foxfennec/foxfennec_side.png rename to Mods/Core/Textures/things/pawn/animal/foxfennec/foxfennec_side.png diff --git a/textures/things/pawn/animal/foxred/foxred_back.png b/Mods/Core/Textures/things/pawn/animal/foxred/foxred_back.png similarity index 100% rename from textures/things/pawn/animal/foxred/foxred_back.png rename to Mods/Core/Textures/things/pawn/animal/foxred/foxred_back.png diff --git a/textures/things/pawn/animal/foxred/foxred_front.png b/Mods/Core/Textures/things/pawn/animal/foxred/foxred_front.png similarity index 100% rename from textures/things/pawn/animal/foxred/foxred_front.png rename to Mods/Core/Textures/things/pawn/animal/foxred/foxred_front.png diff --git a/textures/things/pawn/animal/foxred/foxred_side.png b/Mods/Core/Textures/things/pawn/animal/foxred/foxred_side.png similarity index 100% rename from textures/things/pawn/animal/foxred/foxred_side.png rename to Mods/Core/Textures/things/pawn/animal/foxred/foxred_side.png diff --git a/textures/things/pawn/animal/gazelle/gazelle_back.png b/Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_back.png similarity index 100% rename from textures/things/pawn/animal/gazelle/gazelle_back.png rename to Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_back.png diff --git a/textures/things/pawn/animal/gazelle/gazelle_front.png b/Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_front.png similarity index 100% rename from textures/things/pawn/animal/gazelle/gazelle_front.png rename to Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_front.png diff --git a/textures/things/pawn/animal/gazelle/gazelle_side.png b/Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_side.png similarity index 100% rename from textures/things/pawn/animal/gazelle/gazelle_side.png rename to Mods/Core/Textures/things/pawn/animal/gazelle/gazelle_side.png diff --git a/textures/things/pawn/animal/goat/Dessicated_GoatFemale_east.png b/Mods/Core/Textures/things/pawn/animal/goat/Dessicated_GoatFemale_east.png similarity index 100% rename from textures/things/pawn/animal/goat/Dessicated_GoatFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/goat/Dessicated_GoatFemale_east.png diff --git a/textures/things/pawn/animal/goat/Dessicated_GoatMale_east.png b/Mods/Core/Textures/things/pawn/animal/goat/Dessicated_GoatMale_east.png similarity index 100% rename from textures/things/pawn/animal/goat/Dessicated_GoatMale_east.png rename to Mods/Core/Textures/things/pawn/animal/goat/Dessicated_GoatMale_east.png diff --git a/textures/things/pawn/animal/goat/GoatFemale_east.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_east.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_east.png diff --git a/textures/things/pawn/animal/goat/GoatFemale_north.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_north.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_north.png diff --git a/textures/things/pawn/animal/goat/GoatFemale_south.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_south.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatFemale_south.png diff --git a/textures/things/pawn/animal/goat/GoatMale_east.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatMale_east.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatMale_east.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatMale_east.png diff --git a/textures/things/pawn/animal/goat/GoatMale_north.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatMale_north.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatMale_north.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatMale_north.png diff --git a/textures/things/pawn/animal/goat/GoatMale_south.png b/Mods/Core/Textures/things/pawn/animal/goat/GoatMale_south.png similarity index 100% rename from textures/things/pawn/animal/goat/GoatMale_south.png rename to Mods/Core/Textures/things/pawn/animal/goat/GoatMale_south.png diff --git a/textures/things/pawn/animal/goose/Dessicated_Goose_east.png b/Mods/Core/Textures/things/pawn/animal/goose/Dessicated_Goose_east.png similarity index 100% rename from textures/things/pawn/animal/goose/Dessicated_Goose_east.png rename to Mods/Core/Textures/things/pawn/animal/goose/Dessicated_Goose_east.png diff --git a/textures/things/pawn/animal/goose/Goose_east.png b/Mods/Core/Textures/things/pawn/animal/goose/Goose_east.png similarity index 100% rename from textures/things/pawn/animal/goose/Goose_east.png rename to Mods/Core/Textures/things/pawn/animal/goose/Goose_east.png diff --git a/textures/things/pawn/animal/goose/Goose_north.png b/Mods/Core/Textures/things/pawn/animal/goose/Goose_north.png similarity index 100% rename from textures/things/pawn/animal/goose/Goose_north.png rename to Mods/Core/Textures/things/pawn/animal/goose/Goose_north.png diff --git a/textures/things/pawn/animal/goose/Goose_south.png b/Mods/Core/Textures/things/pawn/animal/goose/Goose_south.png similarity index 100% rename from textures/things/pawn/animal/goose/Goose_south.png rename to Mods/Core/Textures/things/pawn/animal/goose/Goose_south.png diff --git a/textures/things/pawn/animal/guineapig/AEXP_GuineaPig_SkinSet.xml b/Mods/Core/Textures/things/pawn/animal/guineapig/AEXP_GuineaPig_SkinSet.xml similarity index 100% rename from textures/things/pawn/animal/guineapig/AEXP_GuineaPig_SkinSet.xml rename to Mods/Core/Textures/things/pawn/animal/guineapig/AEXP_GuineaPig_SkinSet.xml diff --git a/textures/things/pawn/animal/guineapig/Dessicated_GuineaPig_east.png b/Mods/Core/Textures/things/pawn/animal/guineapig/Dessicated_GuineaPig_east.png similarity index 100% rename from textures/things/pawn/animal/guineapig/Dessicated_GuineaPig_east.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/Dessicated_GuineaPig_east.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig1_east.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_east.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig1_east.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_east.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig1_north.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_north.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig1_north.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_north.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig1_south.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_south.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig1_south.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig1_south.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig2_east.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_east.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig2_east.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_east.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig2_north.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_north.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig2_north.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_north.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig2_south.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_south.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig2_south.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig2_south.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig3_east.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_east.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig3_east.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_east.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig3_north.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_north.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig3_north.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_north.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig3_south.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_south.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig3_south.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig3_south.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_east.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_east.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_east.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_east.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_eastm.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_eastm.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_eastm.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_eastm.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_north.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_north.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_north.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_north.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_northm.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_northm.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_northm.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_northm.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_south.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_south.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_south.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_south.png diff --git a/textures/things/pawn/animal/guineapig/GuineaPig_southm.png b/Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_southm.png similarity index 100% rename from textures/things/pawn/animal/guineapig/GuineaPig_southm.png rename to Mods/Core/Textures/things/pawn/animal/guineapig/GuineaPig_southm.png diff --git a/textures/things/pawn/animal/hare/Hare_east.png b/Mods/Core/Textures/things/pawn/animal/hare/Hare_east.png similarity index 100% rename from textures/things/pawn/animal/hare/Hare_east.png rename to Mods/Core/Textures/things/pawn/animal/hare/Hare_east.png diff --git a/textures/things/pawn/animal/hare/Hare_north.png b/Mods/Core/Textures/things/pawn/animal/hare/Hare_north.png similarity index 100% rename from textures/things/pawn/animal/hare/Hare_north.png rename to Mods/Core/Textures/things/pawn/animal/hare/Hare_north.png diff --git a/textures/things/pawn/animal/hare/Hare_south.png b/Mods/Core/Textures/things/pawn/animal/hare/Hare_south.png similarity index 100% rename from textures/things/pawn/animal/hare/Hare_south.png rename to Mods/Core/Textures/things/pawn/animal/hare/Hare_south.png diff --git a/textures/things/pawn/animal/hare/hare_back.png b/Mods/Core/Textures/things/pawn/animal/hare/hare_back.png similarity index 100% rename from textures/things/pawn/animal/hare/hare_back.png rename to Mods/Core/Textures/things/pawn/animal/hare/hare_back.png diff --git a/textures/things/pawn/animal/hare/hare_front.png b/Mods/Core/Textures/things/pawn/animal/hare/hare_front.png similarity index 100% rename from textures/things/pawn/animal/hare/hare_front.png rename to Mods/Core/Textures/things/pawn/animal/hare/hare_front.png diff --git a/textures/things/pawn/animal/hare/hare_side.png b/Mods/Core/Textures/things/pawn/animal/hare/hare_side.png similarity index 100% rename from textures/things/pawn/animal/hare/hare_side.png rename to Mods/Core/Textures/things/pawn/animal/hare/hare_side.png diff --git a/textures/things/pawn/animal/horse/AEXP_Horse_SkinSet.xml b/Mods/Core/Textures/things/pawn/animal/horse/AEXP_Horse_SkinSet.xml similarity index 100% rename from textures/things/pawn/animal/horse/AEXP_Horse_SkinSet.xml rename to Mods/Core/Textures/things/pawn/animal/horse/AEXP_Horse_SkinSet.xml diff --git a/textures/things/pawn/animal/horse/Dessicated_Horse_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Dessicated_Horse_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Dessicated_Horse_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Dessicated_Horse_east.png diff --git a/textures/things/pawn/animal/horse/Horse1_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse1_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse1_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse1_east.png diff --git a/textures/things/pawn/animal/horse/Horse1_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse1_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse1_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse1_north.png diff --git a/textures/things/pawn/animal/horse/Horse1_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse1_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse1_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse1_south.png diff --git a/textures/things/pawn/animal/horse/Horse2_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse2_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse2_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse2_east.png diff --git a/textures/things/pawn/animal/horse/Horse2_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse2_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse2_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse2_north.png diff --git a/textures/things/pawn/animal/horse/Horse2_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse2_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse2_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse2_south.png diff --git a/textures/things/pawn/animal/horse/Horse3_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse3_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse3_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse3_east.png diff --git a/textures/things/pawn/animal/horse/Horse3_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse3_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse3_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse3_north.png diff --git a/textures/things/pawn/animal/horse/Horse3_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse3_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse3_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse3_south.png diff --git a/textures/things/pawn/animal/horse/Horse4_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse4_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse4_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse4_east.png diff --git a/textures/things/pawn/animal/horse/Horse4_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse4_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse4_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse4_north.png diff --git a/textures/things/pawn/animal/horse/Horse4_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse4_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse4_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse4_south.png diff --git a/textures/things/pawn/animal/horse/Horse5_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse5_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse5_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse5_east.png diff --git a/textures/things/pawn/animal/horse/Horse5_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse5_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse5_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse5_north.png diff --git a/textures/things/pawn/animal/horse/Horse5_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse5_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse5_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse5_south.png diff --git a/textures/things/pawn/animal/horse/Horse6_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse6_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse6_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse6_east.png diff --git a/textures/things/pawn/animal/horse/Horse6_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse6_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse6_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse6_north.png diff --git a/textures/things/pawn/animal/horse/Horse6_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse6_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse6_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse6_south.png diff --git a/textures/things/pawn/animal/horse/HorsePack_east.png b/Mods/Core/Textures/things/pawn/animal/horse/HorsePack_east.png similarity index 100% rename from textures/things/pawn/animal/horse/HorsePack_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/HorsePack_east.png diff --git a/textures/things/pawn/animal/horse/HorsePack_north.png b/Mods/Core/Textures/things/pawn/animal/horse/HorsePack_north.png similarity index 100% rename from textures/things/pawn/animal/horse/HorsePack_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/HorsePack_north.png diff --git a/textures/things/pawn/animal/horse/HorsePack_south.png b/Mods/Core/Textures/things/pawn/animal/horse/HorsePack_south.png similarity index 100% rename from textures/things/pawn/animal/horse/HorsePack_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/HorsePack_south.png diff --git a/textures/things/pawn/animal/horse/Horse_east.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse_east.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse_east.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse_east.png diff --git a/textures/things/pawn/animal/horse/Horse_north.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse_north.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse_north.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse_north.png diff --git a/textures/things/pawn/animal/horse/Horse_south.png b/Mods/Core/Textures/things/pawn/animal/horse/Horse_south.png similarity index 100% rename from textures/things/pawn/animal/horse/Horse_south.png rename to Mods/Core/Textures/things/pawn/animal/horse/Horse_south.png diff --git a/textures/things/pawn/animal/husky/Husky_east.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_east.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_east.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_east.png diff --git a/textures/things/pawn/animal/husky/Husky_eastm.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_eastm.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_eastm.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_eastm.png diff --git a/textures/things/pawn/animal/husky/Husky_north.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_north.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_north.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_north.png diff --git a/textures/things/pawn/animal/husky/Husky_northm.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_northm.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_northm.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_northm.png diff --git a/textures/things/pawn/animal/husky/Husky_south.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_south.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_south.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_south.png diff --git a/textures/things/pawn/animal/husky/Husky_southm.png b/Mods/Core/Textures/things/pawn/animal/husky/Husky_southm.png similarity index 100% rename from textures/things/pawn/animal/husky/Husky_southm.png rename to Mods/Core/Textures/things/pawn/animal/husky/Husky_southm.png diff --git a/textures/things/pawn/animal/husky/husky_back.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_back.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_back.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_back.png diff --git a/textures/things/pawn/animal/husky/husky_backm.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_backm.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_backm.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_backm.png diff --git a/textures/things/pawn/animal/husky/husky_front.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_front.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_front.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_front.png diff --git a/textures/things/pawn/animal/husky/husky_frontm.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_frontm.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_frontm.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_frontm.png diff --git a/textures/things/pawn/animal/husky/husky_side.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_side.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_side.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_side.png diff --git a/textures/things/pawn/animal/husky/husky_sidem.png b/Mods/Core/Textures/things/pawn/animal/husky/husky_sidem.png similarity index 100% rename from textures/things/pawn/animal/husky/husky_sidem.png rename to Mods/Core/Textures/things/pawn/animal/husky/husky_sidem.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_east.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_east.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_east.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_eastm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_eastm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_eastm.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_north.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_north.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_north.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_northm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_northm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_northm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_northm.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_south.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_south.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_south.png diff --git a/textures/things/pawn/animal/ibex/IbexFemale_southm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_southm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexFemale_southm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexFemale_southm.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_east.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_east.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_east.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_east.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_eastm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_eastm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_eastm.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_north.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_north.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_north.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_north.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_northm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_northm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_northm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_northm.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_south.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_south.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_south.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_south.png diff --git a/textures/things/pawn/animal/ibex/IbexMale_southm.png b/Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_southm.png similarity index 100% rename from textures/things/pawn/animal/ibex/IbexMale_southm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/IbexMale_southm.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_back.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_back.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_back.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_back.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_backm.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_backm.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_backm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_backm.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_front.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_front.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_front.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_front.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_frontm.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_frontm.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_frontm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_frontm.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_side.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_side.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_side.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_side.png diff --git a/textures/things/pawn/animal/ibex/ibexfemale_sidem.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_sidem.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexfemale_sidem.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexfemale_sidem.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_back.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_back.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_back.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_back.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_backm.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_backm.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_backm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_backm.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_front.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_front.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_front.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_front.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_frontm.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_frontm.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_frontm.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_frontm.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_side.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_side.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_side.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_side.png diff --git a/textures/things/pawn/animal/ibex/ibexmale_sidem.png b/Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_sidem.png similarity index 100% rename from textures/things/pawn/animal/ibex/ibexmale_sidem.png rename to Mods/Core/Textures/things/pawn/animal/ibex/ibexmale_sidem.png diff --git a/textures/things/pawn/animal/iguana/Iguana_east.png b/Mods/Core/Textures/things/pawn/animal/iguana/Iguana_east.png similarity index 100% rename from textures/things/pawn/animal/iguana/Iguana_east.png rename to Mods/Core/Textures/things/pawn/animal/iguana/Iguana_east.png diff --git a/textures/things/pawn/animal/iguana/Iguana_north.png b/Mods/Core/Textures/things/pawn/animal/iguana/Iguana_north.png similarity index 100% rename from textures/things/pawn/animal/iguana/Iguana_north.png rename to Mods/Core/Textures/things/pawn/animal/iguana/Iguana_north.png diff --git a/textures/things/pawn/animal/iguana/Iguana_south.png b/Mods/Core/Textures/things/pawn/animal/iguana/Iguana_south.png similarity index 100% rename from textures/things/pawn/animal/iguana/Iguana_south.png rename to Mods/Core/Textures/things/pawn/animal/iguana/Iguana_south.png diff --git a/textures/things/pawn/animal/iguana/iguana_back.png b/Mods/Core/Textures/things/pawn/animal/iguana/iguana_back.png similarity index 100% rename from textures/things/pawn/animal/iguana/iguana_back.png rename to Mods/Core/Textures/things/pawn/animal/iguana/iguana_back.png diff --git a/textures/things/pawn/animal/iguana/iguana_front.png b/Mods/Core/Textures/things/pawn/animal/iguana/iguana_front.png similarity index 100% rename from textures/things/pawn/animal/iguana/iguana_front.png rename to Mods/Core/Textures/things/pawn/animal/iguana/iguana_front.png diff --git a/textures/things/pawn/animal/iguana/iguana_side.png b/Mods/Core/Textures/things/pawn/animal/iguana/iguana_side.png similarity index 100% rename from textures/things/pawn/animal/iguana/iguana_side.png rename to Mods/Core/Textures/things/pawn/animal/iguana/iguana_side.png diff --git a/textures/things/pawn/animal/labrador/Labrador_east.png b/Mods/Core/Textures/things/pawn/animal/labrador/Labrador_east.png similarity index 100% rename from textures/things/pawn/animal/labrador/Labrador_east.png rename to Mods/Core/Textures/things/pawn/animal/labrador/Labrador_east.png diff --git a/textures/things/pawn/animal/labrador/Labrador_north.png b/Mods/Core/Textures/things/pawn/animal/labrador/Labrador_north.png similarity index 100% rename from textures/things/pawn/animal/labrador/Labrador_north.png rename to Mods/Core/Textures/things/pawn/animal/labrador/Labrador_north.png diff --git a/textures/things/pawn/animal/labrador/Labrador_south.png b/Mods/Core/Textures/things/pawn/animal/labrador/Labrador_south.png similarity index 100% rename from textures/things/pawn/animal/labrador/Labrador_south.png rename to Mods/Core/Textures/things/pawn/animal/labrador/Labrador_south.png diff --git a/textures/things/pawn/animal/labrador/labrador_back.png b/Mods/Core/Textures/things/pawn/animal/labrador/labrador_back.png similarity index 100% rename from textures/things/pawn/animal/labrador/labrador_back.png rename to Mods/Core/Textures/things/pawn/animal/labrador/labrador_back.png diff --git a/textures/things/pawn/animal/labrador/labrador_front.png b/Mods/Core/Textures/things/pawn/animal/labrador/labrador_front.png similarity index 100% rename from textures/things/pawn/animal/labrador/labrador_front.png rename to Mods/Core/Textures/things/pawn/animal/labrador/labrador_front.png diff --git a/textures/things/pawn/animal/labrador/labrador_side.png b/Mods/Core/Textures/things/pawn/animal/labrador/labrador_side.png similarity index 100% rename from textures/things/pawn/animal/labrador/labrador_side.png rename to Mods/Core/Textures/things/pawn/animal/labrador/labrador_side.png diff --git a/textures/things/pawn/animal/lynx/Lynx_east.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_east.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_east.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_east.png diff --git a/textures/things/pawn/animal/lynx/Lynx_eastm.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_eastm.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_eastm.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_eastm.png diff --git a/textures/things/pawn/animal/lynx/Lynx_north.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_north.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_north.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_north.png diff --git a/textures/things/pawn/animal/lynx/Lynx_northm.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_northm.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_northm.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_northm.png diff --git a/textures/things/pawn/animal/lynx/Lynx_south.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_south.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_south.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_south.png diff --git a/textures/things/pawn/animal/lynx/Lynx_southm.png b/Mods/Core/Textures/things/pawn/animal/lynx/Lynx_southm.png similarity index 100% rename from textures/things/pawn/animal/lynx/Lynx_southm.png rename to Mods/Core/Textures/things/pawn/animal/lynx/Lynx_southm.png diff --git a/textures/things/pawn/animal/lynx/lynx_back.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_back.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_back.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_back.png diff --git a/textures/things/pawn/animal/lynx/lynx_backm.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_backm.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_backm.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_backm.png diff --git a/textures/things/pawn/animal/lynx/lynx_front.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_front.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_front.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_front.png diff --git a/textures/things/pawn/animal/lynx/lynx_frontm.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_frontm.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_frontm.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_frontm.png diff --git a/textures/things/pawn/animal/lynx/lynx_side.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_side.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_side.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_side.png diff --git a/textures/things/pawn/animal/lynx/lynx_sidem.png b/Mods/Core/Textures/things/pawn/animal/lynx/lynx_sidem.png similarity index 100% rename from textures/things/pawn/animal/lynx/lynx_sidem.png rename to Mods/Core/Textures/things/pawn/animal/lynx/lynx_sidem.png diff --git a/textures/things/pawn/animal/megascarab/Megascarab_east.png b/Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_east.png similarity index 100% rename from textures/things/pawn/animal/megascarab/Megascarab_east.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_east.png diff --git a/textures/things/pawn/animal/megascarab/Megascarab_north.png b/Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_north.png similarity index 100% rename from textures/things/pawn/animal/megascarab/Megascarab_north.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_north.png diff --git a/textures/things/pawn/animal/megascarab/Megascarab_south.png b/Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_south.png similarity index 100% rename from textures/things/pawn/animal/megascarab/Megascarab_south.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/Megascarab_south.png diff --git a/textures/things/pawn/animal/megascarab/megascarab_back.png b/Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_back.png similarity index 100% rename from textures/things/pawn/animal/megascarab/megascarab_back.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_back.png diff --git a/textures/things/pawn/animal/megascarab/megascarab_front.png b/Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_front.png similarity index 100% rename from textures/things/pawn/animal/megascarab/megascarab_front.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_front.png diff --git a/textures/things/pawn/animal/megascarab/megascarab_side.png b/Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_side.png similarity index 100% rename from textures/things/pawn/animal/megascarab/megascarab_side.png rename to Mods/Core/Textures/things/pawn/animal/megascarab/megascarab_side.png diff --git a/textures/things/pawn/animal/megasloth/Megasloth_east.png b/Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_east.png similarity index 100% rename from textures/things/pawn/animal/megasloth/Megasloth_east.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_east.png diff --git a/textures/things/pawn/animal/megasloth/Megasloth_north.png b/Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_north.png similarity index 100% rename from textures/things/pawn/animal/megasloth/Megasloth_north.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_north.png diff --git a/textures/things/pawn/animal/megasloth/Megasloth_south.png b/Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_south.png similarity index 100% rename from textures/things/pawn/animal/megasloth/Megasloth_south.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/Megasloth_south.png diff --git a/textures/things/pawn/animal/megasloth/megasloth_back.png b/Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_back.png similarity index 100% rename from textures/things/pawn/animal/megasloth/megasloth_back.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_back.png diff --git a/textures/things/pawn/animal/megasloth/megasloth_front.png b/Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_front.png similarity index 100% rename from textures/things/pawn/animal/megasloth/megasloth_front.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_front.png diff --git a/textures/things/pawn/animal/megasloth/megasloth_side.png b/Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_side.png similarity index 100% rename from textures/things/pawn/animal/megasloth/megasloth_side.png rename to Mods/Core/Textures/things/pawn/animal/megasloth/megasloth_side.png diff --git a/textures/things/pawn/animal/megaspider/Megaspider_east.png b/Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_east.png similarity index 100% rename from textures/things/pawn/animal/megaspider/Megaspider_east.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_east.png diff --git a/textures/things/pawn/animal/megaspider/Megaspider_north.png b/Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_north.png similarity index 100% rename from textures/things/pawn/animal/megaspider/Megaspider_north.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_north.png diff --git a/textures/things/pawn/animal/megaspider/Megaspider_south.png b/Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_south.png similarity index 100% rename from textures/things/pawn/animal/megaspider/Megaspider_south.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/Megaspider_south.png diff --git a/textures/things/pawn/animal/megaspider/megaspider_back.png b/Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_back.png similarity index 100% rename from textures/things/pawn/animal/megaspider/megaspider_back.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_back.png diff --git a/textures/things/pawn/animal/megaspider/megaspider_front.png b/Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_front.png similarity index 100% rename from textures/things/pawn/animal/megaspider/megaspider_front.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_front.png diff --git a/textures/things/pawn/animal/megaspider/megaspider_side.png b/Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_side.png similarity index 100% rename from textures/things/pawn/animal/megaspider/megaspider_side.png rename to Mods/Core/Textures/things/pawn/animal/megaspider/megaspider_side.png diff --git a/textures/things/pawn/animal/monkey/Monkey_east.png b/Mods/Core/Textures/things/pawn/animal/monkey/Monkey_east.png similarity index 100% rename from textures/things/pawn/animal/monkey/Monkey_east.png rename to Mods/Core/Textures/things/pawn/animal/monkey/Monkey_east.png diff --git a/textures/things/pawn/animal/monkey/Monkey_north.png b/Mods/Core/Textures/things/pawn/animal/monkey/Monkey_north.png similarity index 100% rename from textures/things/pawn/animal/monkey/Monkey_north.png rename to Mods/Core/Textures/things/pawn/animal/monkey/Monkey_north.png diff --git a/textures/things/pawn/animal/monkey/Monkey_south.png b/Mods/Core/Textures/things/pawn/animal/monkey/Monkey_south.png similarity index 100% rename from textures/things/pawn/animal/monkey/Monkey_south.png rename to Mods/Core/Textures/things/pawn/animal/monkey/Monkey_south.png diff --git a/textures/things/pawn/animal/monkey/monkey_back.png b/Mods/Core/Textures/things/pawn/animal/monkey/monkey_back.png similarity index 100% rename from textures/things/pawn/animal/monkey/monkey_back.png rename to Mods/Core/Textures/things/pawn/animal/monkey/monkey_back.png diff --git a/textures/things/pawn/animal/monkey/monkey_front.png b/Mods/Core/Textures/things/pawn/animal/monkey/monkey_front.png similarity index 100% rename from textures/things/pawn/animal/monkey/monkey_front.png rename to Mods/Core/Textures/things/pawn/animal/monkey/monkey_front.png diff --git a/textures/things/pawn/animal/monkey/monkey_side.png b/Mods/Core/Textures/things/pawn/animal/monkey/monkey_side.png similarity index 100% rename from textures/things/pawn/animal/monkey/monkey_side.png rename to Mods/Core/Textures/things/pawn/animal/monkey/monkey_side.png diff --git a/textures/things/pawn/animal/muffalo/Muffalo_east.png b/Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_east.png similarity index 100% rename from textures/things/pawn/animal/muffalo/Muffalo_east.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_east.png diff --git a/textures/things/pawn/animal/muffalo/Muffalo_north.png b/Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_north.png similarity index 100% rename from textures/things/pawn/animal/muffalo/Muffalo_north.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_north.png diff --git a/textures/things/pawn/animal/muffalo/Muffalo_south.png b/Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_south.png similarity index 100% rename from textures/things/pawn/animal/muffalo/Muffalo_south.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/Muffalo_south.png diff --git a/textures/things/pawn/animal/muffalo/muffalo_back.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_back.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalo_back.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_back.png diff --git a/textures/things/pawn/animal/muffalo/muffalo_front.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_front.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalo_front.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_front.png diff --git a/textures/things/pawn/animal/muffalo/muffalo_side.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_side.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalo_side.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalo_side.png diff --git a/textures/things/pawn/animal/muffalo/muffalodessicated_back.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_back.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalodessicated_back.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_back.png diff --git a/textures/things/pawn/animal/muffalo/muffalodessicated_front.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_front.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalodessicated_front.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_front.png diff --git a/textures/things/pawn/animal/muffalo/muffalodessicated_side.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_side.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalodessicated_side.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalodessicated_side.png diff --git a/textures/things/pawn/animal/muffalo/muffalopack_back.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalopack_back.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalopack_back.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalopack_back.png diff --git a/textures/things/pawn/animal/muffalo/muffalopack_side.png b/Mods/Core/Textures/things/pawn/animal/muffalo/muffalopack_side.png similarity index 100% rename from textures/things/pawn/animal/muffalo/muffalopack_side.png rename to Mods/Core/Textures/things/pawn/animal/muffalo/muffalopack_side.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_back.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_back.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_back.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_back.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_backm.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_backm.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_backm.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_backm.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_front.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_front.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_front.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_front.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_frontm.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_frontm.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_frontm.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_frontm.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_side.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_side.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_side.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_side.png diff --git a/textures/things/pawn/animal/ostrich/ostrich_sidem.png b/Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_sidem.png similarity index 100% rename from textures/things/pawn/animal/ostrich/ostrich_sidem.png rename to Mods/Core/Textures/things/pawn/animal/ostrich/ostrich_sidem.png diff --git a/textures/things/pawn/animal/pig/pig_back.png b/Mods/Core/Textures/things/pawn/animal/pig/pig_back.png similarity index 100% rename from textures/things/pawn/animal/pig/pig_back.png rename to Mods/Core/Textures/things/pawn/animal/pig/pig_back.png diff --git a/textures/things/pawn/animal/pig/pig_front.png b/Mods/Core/Textures/things/pawn/animal/pig/pig_front.png similarity index 100% rename from textures/things/pawn/animal/pig/pig_front.png rename to Mods/Core/Textures/things/pawn/animal/pig/pig_front.png diff --git a/textures/things/pawn/animal/pig/pig_side.png b/Mods/Core/Textures/things/pawn/animal/pig/pig_side.png similarity index 100% rename from textures/things/pawn/animal/pig/pig_side.png rename to Mods/Core/Textures/things/pawn/animal/pig/pig_side.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_east.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_east.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_east.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_east.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_eastm.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_eastm.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_eastm.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_eastm.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_north.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_north.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_north.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_north.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_northm.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_northm.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_northm.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_northm.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_south.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_south.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_south.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_south.png diff --git a/textures/things/pawn/animal/raccoon/Raccoon_southm.png b/Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_southm.png similarity index 100% rename from textures/things/pawn/animal/raccoon/Raccoon_southm.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/Raccoon_southm.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_back.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_back.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_back.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_back.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_backm.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_backm.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_backm.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_backm.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_front.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_front.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_front.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_front.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_frontm.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_frontm.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_frontm.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_frontm.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_side.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_side.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_side.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_side.png diff --git a/textures/things/pawn/animal/raccoon/raccoon_sidem.png b/Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_sidem.png similarity index 100% rename from textures/things/pawn/animal/raccoon/raccoon_sidem.png rename to Mods/Core/Textures/things/pawn/animal/raccoon/raccoon_sidem.png diff --git a/textures/things/pawn/animal/rat/Rat_east.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_east.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_east.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_east.png diff --git a/textures/things/pawn/animal/rat/Rat_eastm.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_eastm.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_eastm.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_eastm.png diff --git a/textures/things/pawn/animal/rat/Rat_north.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_north.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_north.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_north.png diff --git a/textures/things/pawn/animal/rat/Rat_northm.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_northm.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_northm.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_northm.png diff --git a/textures/things/pawn/animal/rat/Rat_south.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_south.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_south.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_south.png diff --git a/textures/things/pawn/animal/rat/Rat_southm.png b/Mods/Core/Textures/things/pawn/animal/rat/Rat_southm.png similarity index 100% rename from textures/things/pawn/animal/rat/Rat_southm.png rename to Mods/Core/Textures/things/pawn/animal/rat/Rat_southm.png diff --git a/textures/things/pawn/animal/rat/rat_back.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_back.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_back.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_back.png diff --git a/textures/things/pawn/animal/rat/rat_backm.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_backm.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_backm.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_backm.png diff --git a/textures/things/pawn/animal/rat/rat_front.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_front.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_front.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_front.png diff --git a/textures/things/pawn/animal/rat/rat_frontm.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_frontm.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_frontm.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_frontm.png diff --git a/textures/things/pawn/animal/rat/rat_side.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_side.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_side.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_side.png diff --git a/textures/things/pawn/animal/rat/rat_sidem.png b/Mods/Core/Textures/things/pawn/animal/rat/rat_sidem.png similarity index 100% rename from textures/things/pawn/animal/rat/rat_sidem.png rename to Mods/Core/Textures/things/pawn/animal/rat/rat_sidem.png diff --git a/textures/things/pawn/animal/rhino/Rhino_east.png b/Mods/Core/Textures/things/pawn/animal/rhino/Rhino_east.png similarity index 100% rename from textures/things/pawn/animal/rhino/Rhino_east.png rename to Mods/Core/Textures/things/pawn/animal/rhino/Rhino_east.png diff --git a/textures/things/pawn/animal/rhino/Rhino_north.png b/Mods/Core/Textures/things/pawn/animal/rhino/Rhino_north.png similarity index 100% rename from textures/things/pawn/animal/rhino/Rhino_north.png rename to Mods/Core/Textures/things/pawn/animal/rhino/Rhino_north.png diff --git a/textures/things/pawn/animal/rhino/Rhino_south.png b/Mods/Core/Textures/things/pawn/animal/rhino/Rhino_south.png similarity index 100% rename from textures/things/pawn/animal/rhino/Rhino_south.png rename to Mods/Core/Textures/things/pawn/animal/rhino/Rhino_south.png diff --git a/textures/things/pawn/animal/rhino/rhino_back.png b/Mods/Core/Textures/things/pawn/animal/rhino/rhino_back.png similarity index 100% rename from textures/things/pawn/animal/rhino/rhino_back.png rename to Mods/Core/Textures/things/pawn/animal/rhino/rhino_back.png diff --git a/textures/things/pawn/animal/rhino/rhino_front.png b/Mods/Core/Textures/things/pawn/animal/rhino/rhino_front.png similarity index 100% rename from textures/things/pawn/animal/rhino/rhino_front.png rename to Mods/Core/Textures/things/pawn/animal/rhino/rhino_front.png diff --git a/textures/things/pawn/animal/rhino/rhino_side.png b/Mods/Core/Textures/things/pawn/animal/rhino/rhino_side.png similarity index 100% rename from textures/things/pawn/animal/rhino/rhino_side.png rename to Mods/Core/Textures/things/pawn/animal/rhino/rhino_side.png diff --git a/textures/things/pawn/animal/sheep/Dessicated_SheepFemale_east.png b/Mods/Core/Textures/things/pawn/animal/sheep/Dessicated_SheepFemale_east.png similarity index 100% rename from textures/things/pawn/animal/sheep/Dessicated_SheepFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/sheep/Dessicated_SheepFemale_east.png diff --git a/textures/things/pawn/animal/sheep/Dessicated_SheepMale_east.png b/Mods/Core/Textures/things/pawn/animal/sheep/Dessicated_SheepMale_east.png similarity index 100% rename from textures/things/pawn/animal/sheep/Dessicated_SheepMale_east.png rename to Mods/Core/Textures/things/pawn/animal/sheep/Dessicated_SheepMale_east.png diff --git a/textures/things/pawn/animal/sheep/SheepFemale_east.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_east.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_east.png diff --git a/textures/things/pawn/animal/sheep/SheepFemale_north.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_north.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_north.png diff --git a/textures/things/pawn/animal/sheep/SheepFemale_south.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_south.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepFemale_south.png diff --git a/textures/things/pawn/animal/sheep/SheepMale_east.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_east.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepMale_east.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_east.png diff --git a/textures/things/pawn/animal/sheep/SheepMale_north.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_north.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepMale_north.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_north.png diff --git a/textures/things/pawn/animal/sheep/SheepMale_south.png b/Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_south.png similarity index 100% rename from textures/things/pawn/animal/sheep/SheepMale_south.png rename to Mods/Core/Textures/things/pawn/animal/sheep/SheepMale_south.png diff --git a/textures/things/pawn/animal/spelopede/Spelopede_east.png b/Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_east.png similarity index 100% rename from textures/things/pawn/animal/spelopede/Spelopede_east.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_east.png diff --git a/textures/things/pawn/animal/spelopede/Spelopede_north.png b/Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_north.png similarity index 100% rename from textures/things/pawn/animal/spelopede/Spelopede_north.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_north.png diff --git a/textures/things/pawn/animal/spelopede/Spelopede_south.png b/Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_south.png similarity index 100% rename from textures/things/pawn/animal/spelopede/Spelopede_south.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/Spelopede_south.png diff --git a/textures/things/pawn/animal/spelopede/spelopede_back.png b/Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_back.png similarity index 100% rename from textures/things/pawn/animal/spelopede/spelopede_back.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_back.png diff --git a/textures/things/pawn/animal/spelopede/spelopede_front.png b/Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_front.png similarity index 100% rename from textures/things/pawn/animal/spelopede/spelopede_front.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_front.png diff --git a/textures/things/pawn/animal/spelopede/spelopede_side.png b/Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_side.png similarity index 100% rename from textures/things/pawn/animal/spelopede/spelopede_side.png rename to Mods/Core/Textures/things/pawn/animal/spelopede/spelopede_side.png diff --git a/textures/things/pawn/animal/squirrel/Squirrel_east.png b/Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_east.png similarity index 100% rename from textures/things/pawn/animal/squirrel/Squirrel_east.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_east.png diff --git a/textures/things/pawn/animal/squirrel/Squirrel_north.png b/Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_north.png similarity index 100% rename from textures/things/pawn/animal/squirrel/Squirrel_north.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_north.png diff --git a/textures/things/pawn/animal/squirrel/Squirrel_south.png b/Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_south.png similarity index 100% rename from textures/things/pawn/animal/squirrel/Squirrel_south.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/Squirrel_south.png diff --git a/textures/things/pawn/animal/squirrel/squirrel_back.png b/Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_back.png similarity index 100% rename from textures/things/pawn/animal/squirrel/squirrel_back.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_back.png diff --git a/textures/things/pawn/animal/squirrel/squirrel_front.png b/Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_front.png similarity index 100% rename from textures/things/pawn/animal/squirrel/squirrel_front.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_front.png diff --git a/textures/things/pawn/animal/squirrel/squirrel_side.png b/Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_side.png similarity index 100% rename from textures/things/pawn/animal/squirrel/squirrel_side.png rename to Mods/Core/Textures/things/pawn/animal/squirrel/squirrel_side.png diff --git a/textures/things/pawn/animal/thrumbo/Thrumbo_east.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_east.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/Thrumbo_east.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_east.png diff --git a/textures/things/pawn/animal/thrumbo/Thrumbo_north.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_north.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/Thrumbo_north.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_north.png diff --git a/textures/things/pawn/animal/thrumbo/Thrumbo_south.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_south.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/Thrumbo_south.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/Thrumbo_south.png diff --git a/textures/things/pawn/animal/thrumbo/thrumbo_back.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_back.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/thrumbo_back.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_back.png diff --git a/textures/things/pawn/animal/thrumbo/thrumbo_front.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_front.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/thrumbo_front.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_front.png diff --git a/textures/things/pawn/animal/thrumbo/thrumbo_side.png b/Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_side.png similarity index 100% rename from textures/things/pawn/animal/thrumbo/thrumbo_side.png rename to Mods/Core/Textures/things/pawn/animal/thrumbo/thrumbo_side.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_east.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_east.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_east.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_east.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_eastm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_eastm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_eastm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_eastm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_north.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_north.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_north.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_north.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_northm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_northm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_northm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_northm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_south.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_south.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_south.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_south.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerBaby_southm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_southm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerBaby_southm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerBaby_southm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_east.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_east.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_east.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_eastm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_eastm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_eastm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_north.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_north.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_north.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_northm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_northm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_northm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_northm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_south.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_south.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_south.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerFemale_southm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_southm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerFemale_southm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerFemale_southm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_east.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_east.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_east.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_east.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_eastm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_eastm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_eastm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_eastm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_north.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_north.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_north.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_north.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_northm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_northm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_northm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_northm.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_south.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_south.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_south.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_south.png diff --git a/textures/things/pawn/animal/tofix_deer/DeerMale_southm.png b/Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_southm.png similarity index 100% rename from textures/things/pawn/animal/tofix_deer/DeerMale_southm.png rename to Mods/Core/Textures/things/pawn/animal/tofix_deer/DeerMale_southm.png diff --git a/textures/things/pawn/animal/tortoise/tortoise_back.png b/Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_back.png similarity index 100% rename from textures/things/pawn/animal/tortoise/tortoise_back.png rename to Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_back.png diff --git a/textures/things/pawn/animal/tortoise/tortoise_front.png b/Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_front.png similarity index 100% rename from textures/things/pawn/animal/tortoise/tortoise_front.png rename to Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_front.png diff --git a/textures/things/pawn/animal/tortoise/tortoise_side.png b/Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_side.png similarity index 100% rename from textures/things/pawn/animal/tortoise/tortoise_side.png rename to Mods/Core/Textures/things/pawn/animal/tortoise/tortoise_side.png diff --git a/textures/things/pawn/animal/toxalope/Dessicated_Toxalope_east.png b/Mods/Core/Textures/things/pawn/animal/toxalope/Dessicated_Toxalope_east.png similarity index 100% rename from textures/things/pawn/animal/toxalope/Dessicated_Toxalope_east.png rename to Mods/Core/Textures/things/pawn/animal/toxalope/Dessicated_Toxalope_east.png diff --git a/textures/things/pawn/animal/toxalope/Toxalope_east.png b/Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_east.png similarity index 100% rename from textures/things/pawn/animal/toxalope/Toxalope_east.png rename to Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_east.png diff --git a/textures/things/pawn/animal/toxalope/Toxalope_north.png b/Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_north.png similarity index 100% rename from textures/things/pawn/animal/toxalope/Toxalope_north.png rename to Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_north.png diff --git a/textures/things/pawn/animal/toxalope/Toxalope_south.png b/Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_south.png similarity index 100% rename from textures/things/pawn/animal/toxalope/Toxalope_south.png rename to Mods/Core/Textures/things/pawn/animal/toxalope/Toxalope_south.png diff --git a/textures/things/pawn/animal/turkey/TurkeyHen_east.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_east.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyHen_east.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_east.png diff --git a/textures/things/pawn/animal/turkey/TurkeyHen_north.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_north.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyHen_north.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_north.png diff --git a/textures/things/pawn/animal/turkey/TurkeyHen_south.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_south.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyHen_south.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyHen_south.png diff --git a/textures/things/pawn/animal/turkey/TurkeyTom_east.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_east.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyTom_east.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_east.png diff --git a/textures/things/pawn/animal/turkey/TurkeyTom_north.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_north.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyTom_north.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_north.png diff --git a/textures/things/pawn/animal/turkey/TurkeyTom_south.png b/Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_south.png similarity index 100% rename from textures/things/pawn/animal/turkey/TurkeyTom_south.png rename to Mods/Core/Textures/things/pawn/animal/turkey/TurkeyTom_south.png diff --git a/textures/things/pawn/animal/turkey/turkeyhen_back.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_back.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeyhen_back.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_back.png diff --git a/textures/things/pawn/animal/turkey/turkeyhen_front.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_front.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeyhen_front.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_front.png diff --git a/textures/things/pawn/animal/turkey/turkeyhen_side.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_side.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeyhen_side.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeyhen_side.png diff --git a/textures/things/pawn/animal/turkey/turkeytom_back.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_back.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeytom_back.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_back.png diff --git a/textures/things/pawn/animal/turkey/turkeytom_front.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_front.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeytom_front.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_front.png diff --git a/textures/things/pawn/animal/turkey/turkeytom_side.png b/Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_side.png similarity index 100% rename from textures/things/pawn/animal/turkey/turkeytom_side.png rename to Mods/Core/Textures/things/pawn/animal/turkey/turkeytom_side.png diff --git a/textures/things/pawn/animal/warg/Warg_east.png b/Mods/Core/Textures/things/pawn/animal/warg/Warg_east.png similarity index 100% rename from textures/things/pawn/animal/warg/Warg_east.png rename to Mods/Core/Textures/things/pawn/animal/warg/Warg_east.png diff --git a/textures/things/pawn/animal/warg/Warg_north.png b/Mods/Core/Textures/things/pawn/animal/warg/Warg_north.png similarity index 100% rename from textures/things/pawn/animal/warg/Warg_north.png rename to Mods/Core/Textures/things/pawn/animal/warg/Warg_north.png diff --git a/textures/things/pawn/animal/warg/Warg_south.png b/Mods/Core/Textures/things/pawn/animal/warg/Warg_south.png similarity index 100% rename from textures/things/pawn/animal/warg/Warg_south.png rename to Mods/Core/Textures/things/pawn/animal/warg/Warg_south.png diff --git a/textures/things/pawn/animal/warg/warg_back.png b/Mods/Core/Textures/things/pawn/animal/warg/warg_back.png similarity index 100% rename from textures/things/pawn/animal/warg/warg_back.png rename to Mods/Core/Textures/things/pawn/animal/warg/warg_back.png diff --git a/textures/things/pawn/animal/warg/warg_front.png b/Mods/Core/Textures/things/pawn/animal/warg/warg_front.png similarity index 100% rename from textures/things/pawn/animal/warg/warg_front.png rename to Mods/Core/Textures/things/pawn/animal/warg/warg_front.png diff --git a/textures/things/pawn/animal/warg/warg_side.png b/Mods/Core/Textures/things/pawn/animal/warg/warg_side.png similarity index 100% rename from textures/things/pawn/animal/warg/warg_side.png rename to Mods/Core/Textures/things/pawn/animal/warg/warg_side.png diff --git a/textures/things/pawn/animal/wildboar/WildBoar_east.png b/Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_east.png similarity index 100% rename from textures/things/pawn/animal/wildboar/WildBoar_east.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_east.png diff --git a/textures/things/pawn/animal/wildboar/WildBoar_north.png b/Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_north.png similarity index 100% rename from textures/things/pawn/animal/wildboar/WildBoar_north.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_north.png diff --git a/textures/things/pawn/animal/wildboar/WildBoar_south.png b/Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_south.png similarity index 100% rename from textures/things/pawn/animal/wildboar/WildBoar_south.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/WildBoar_south.png diff --git a/textures/things/pawn/animal/wildboar/wildboar_back.png b/Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_back.png similarity index 100% rename from textures/things/pawn/animal/wildboar/wildboar_back.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_back.png diff --git a/textures/things/pawn/animal/wildboar/wildboar_front.png b/Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_front.png similarity index 100% rename from textures/things/pawn/animal/wildboar/wildboar_front.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_front.png diff --git a/textures/things/pawn/animal/wildboar/wildboar_side.png b/Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_side.png similarity index 100% rename from textures/things/pawn/animal/wildboar/wildboar_side.png rename to Mods/Core/Textures/things/pawn/animal/wildboar/wildboar_side.png diff --git a/textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_east.png b/Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_east.png similarity index 100% rename from textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_east.png rename to Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_east.png diff --git a/textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_north.png b/Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_north.png similarity index 100% rename from textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_north.png rename to Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_north.png diff --git a/textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_south.png b/Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_south.png similarity index 100% rename from textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_south.png rename to Mods/Core/Textures/things/pawn/animal/wolf_arctic/Wolf_Arctic_south.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber2_east.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_east.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber2_east.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_east.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber2_north.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_north.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber2_north.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_north.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber2_south.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_south.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber2_south.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber2_south.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber3_east.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_east.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber3_east.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_east.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber3_north.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_north.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber3_north.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_north.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber3_south.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_south.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber3_south.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber3_south.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber4_east.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_east.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber4_east.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_east.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber4_north.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_north.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber4_north.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_north.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber4_south.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_south.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber4_south.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber4_south.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber_east.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_east.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber_east.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_east.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber_north.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_north.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber_north.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_north.png diff --git a/textures/things/pawn/animal/wolf_timber/Wolf_Timber_south.png b/Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_south.png similarity index 100% rename from textures/things/pawn/animal/wolf_timber/Wolf_Timber_south.png rename to Mods/Core/Textures/things/pawn/animal/wolf_timber/Wolf_Timber_south.png diff --git a/textures/things/pawn/animal/wolfarctic/wolfarctic_back.png b/Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_back.png similarity index 100% rename from textures/things/pawn/animal/wolfarctic/wolfarctic_back.png rename to Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_back.png diff --git a/textures/things/pawn/animal/wolfarctic/wolfarctic_front.png b/Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_front.png similarity index 100% rename from textures/things/pawn/animal/wolfarctic/wolfarctic_front.png rename to Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_front.png diff --git a/textures/things/pawn/animal/wolfarctic/wolfarctic_side.png b/Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_side.png similarity index 100% rename from textures/things/pawn/animal/wolfarctic/wolfarctic_side.png rename to Mods/Core/Textures/things/pawn/animal/wolfarctic/wolfarctic_side.png diff --git a/textures/things/pawn/animal/wolftimber/wolftimber_back.png b/Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_back.png similarity index 100% rename from textures/things/pawn/animal/wolftimber/wolftimber_back.png rename to Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_back.png diff --git a/textures/things/pawn/animal/wolftimber/wolftimber_front.png b/Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_front.png similarity index 100% rename from textures/things/pawn/animal/wolftimber/wolftimber_front.png rename to Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_front.png diff --git a/textures/things/pawn/animal/wolftimber/wolftimber_side.png b/Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_side.png similarity index 100% rename from textures/things/pawn/animal/wolftimber/wolftimber_side.png rename to Mods/Core/Textures/things/pawn/animal/wolftimber/wolftimber_side.png diff --git a/textures/things/pawn/animal/yak/Dessicated_YakFemale_east.png b/Mods/Core/Textures/things/pawn/animal/yak/Dessicated_YakFemale_east.png similarity index 100% rename from textures/things/pawn/animal/yak/Dessicated_YakFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/Dessicated_YakFemale_east.png diff --git a/textures/things/pawn/animal/yak/Dessicated_YakMale_east.png b/Mods/Core/Textures/things/pawn/animal/yak/Dessicated_YakMale_east.png similarity index 100% rename from textures/things/pawn/animal/yak/Dessicated_YakMale_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/Dessicated_YakMale_east.png diff --git a/textures/things/pawn/animal/yak/YakFemalePack_east.png b/Mods/Core/Textures/things/pawn/animal/yak/YakFemalePack_east.png similarity index 100% rename from textures/things/pawn/animal/yak/YakFemalePack_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakFemalePack_east.png diff --git a/textures/things/pawn/animal/yak/YakFemalePack_north.png b/Mods/Core/Textures/things/pawn/animal/yak/YakFemalePack_north.png similarity index 100% rename from textures/things/pawn/animal/yak/YakFemalePack_north.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakFemalePack_north.png diff --git a/textures/things/pawn/animal/yak/YakFemale_east.png b/Mods/Core/Textures/things/pawn/animal/yak/YakFemale_east.png similarity index 100% rename from textures/things/pawn/animal/yak/YakFemale_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakFemale_east.png diff --git a/textures/things/pawn/animal/yak/YakFemale_north.png b/Mods/Core/Textures/things/pawn/animal/yak/YakFemale_north.png similarity index 100% rename from textures/things/pawn/animal/yak/YakFemale_north.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakFemale_north.png diff --git a/textures/things/pawn/animal/yak/YakFemale_south.png b/Mods/Core/Textures/things/pawn/animal/yak/YakFemale_south.png similarity index 100% rename from textures/things/pawn/animal/yak/YakFemale_south.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakFemale_south.png diff --git a/textures/things/pawn/animal/yak/YakMalePack_east.png b/Mods/Core/Textures/things/pawn/animal/yak/YakMalePack_east.png similarity index 100% rename from textures/things/pawn/animal/yak/YakMalePack_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakMalePack_east.png diff --git a/textures/things/pawn/animal/yak/YakMalePack_north.png b/Mods/Core/Textures/things/pawn/animal/yak/YakMalePack_north.png similarity index 100% rename from textures/things/pawn/animal/yak/YakMalePack_north.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakMalePack_north.png diff --git a/textures/things/pawn/animal/yak/YakMale_east.png b/Mods/Core/Textures/things/pawn/animal/yak/YakMale_east.png similarity index 100% rename from textures/things/pawn/animal/yak/YakMale_east.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakMale_east.png diff --git a/textures/things/pawn/animal/yak/YakMale_north.png b/Mods/Core/Textures/things/pawn/animal/yak/YakMale_north.png similarity index 100% rename from textures/things/pawn/animal/yak/YakMale_north.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakMale_north.png diff --git a/textures/things/pawn/animal/yak/YakMale_south.png b/Mods/Core/Textures/things/pawn/animal/yak/YakMale_south.png similarity index 100% rename from textures/things/pawn/animal/yak/YakMale_south.png rename to Mods/Core/Textures/things/pawn/animal/yak/YakMale_south.png diff --git a/textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_back.png b/Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_back.png similarity index 100% rename from textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_back.png rename to Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_back.png diff --git a/textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_front.png b/Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_front.png similarity index 100% rename from textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_front.png rename to Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_front.png diff --git a/textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_side.png b/Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_side.png similarity index 100% rename from textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_side.png rename to Mods/Core/Textures/things/pawn/animal/yorkshireterrier/yorkshireterrier_side.png diff --git a/textures/things/pawn/effects/mentalstateimminent.png b/Mods/Core/Textures/things/pawn/effects/mentalstateimminent.png similarity index 100% rename from textures/things/pawn/effects/mentalstateimminent.png rename to Mods/Core/Textures/things/pawn/effects/mentalstateimminent.png diff --git a/textures/things/pawn/effects/unhappy.png b/Mods/Core/Textures/things/pawn/effects/unhappy.png similarity index 100% rename from textures/things/pawn/effects/unhappy.png rename to Mods/Core/Textures/things/pawn/effects/unhappy.png diff --git a/textures/things/pawn/humanlike/apparel/Mechlink.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/Mechlink.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/Mechlink.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/Mechlink.png diff --git a/textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet.png diff --git a/textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back.png diff --git a/textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front.png diff --git a/textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side.png diff --git a/textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset.png diff --git a/textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east.png diff --git a/textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north.png diff --git a/textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south.png diff --git a/textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset.png diff --git a/textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east.png diff --git a/textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north.png diff --git a/textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south.png diff --git a/textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap.png diff --git a/textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east.png diff --git a/textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north.png diff --git a/textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south.png diff --git a/textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack.png diff --git a/textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east.png diff --git a/textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north.png diff --git a/textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south.png diff --git a/textures/things/pawn/humanlike/apparel/beret/Beret.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/beret/Beret.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret.png diff --git a/textures/things/pawn/humanlike/apparel/beret/Beret_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/beret/Beret_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_east.png diff --git a/textures/things/pawn/humanlike/apparel/beret/Beret_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/beret/Beret_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_north.png diff --git a/textures/things/pawn/humanlike/apparel/beret/Beret_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/beret/Beret_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_south.png diff --git a/textures/things/pawn/humanlike/apparel/beret/Beret_west.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_west.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/beret/Beret_west.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/beret/Beret_west.png diff --git a/textures/things/pawn/humanlike/apparel/blindfold/Blindfold.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/blindfold/Blindfold.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold.png diff --git a/textures/things/pawn/humanlike/apparel/blindfold/Blindfold_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/blindfold/Blindfold_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_east.png diff --git a/textures/things/pawn/humanlike/apparel/blindfold/Blindfold_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/blindfold/Blindfold_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_north.png diff --git a/textures/things/pawn/humanlike/apparel/blindfold/Blindfold_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/blindfold/Blindfold_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/blindfold/Blindfold_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bodystrap/BodyStrap_south.png diff --git a/textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat.png diff --git a/textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back.png diff --git a/textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front.png diff --git a/textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side.png diff --git a/textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack.png diff --git a/textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east.png diff --git a/textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north.png diff --git a/textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south.png diff --git a/textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap.png diff --git a/textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_east.png diff --git a/textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_north.png diff --git a/textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/broadwrap/Broadwrap_south.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/burka/Burka_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/burka/Burka_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/burka/Burka_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/cape/Cape_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cape/Cape_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cape/Cape_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/clothmask/ClothMask.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/clothmask/ClothMask.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask.png diff --git a/textures/things/pawn/humanlike/apparel/clothmask/ClothMask_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/clothmask/ClothMask_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_east.png diff --git a/textures/things/pawn/humanlike/apparel/clothmask/ClothMask_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/clothmask/ClothMask_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_north.png diff --git a/textures/things/pawn/humanlike/apparel/clothmask/ClothMask_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/clothmask/ClothMask_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/clothmask/ClothMask_south.png diff --git a/textures/things/pawn/humanlike/apparel/controlpack/ControlPack.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/controlpack/ControlPack.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack.png diff --git a/textures/things/pawn/humanlike/apparel/controlpack/ControlPack_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/controlpack/ControlPack_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_east.png diff --git a/textures/things/pawn/humanlike/apparel/controlpack/ControlPack_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/controlpack/ControlPack_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_north.png diff --git a/textures/things/pawn/humanlike/apparel/controlpack/ControlPack_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/controlpack/ControlPack_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/controlpack/ControlPack_south.png diff --git a/textures/things/pawn/humanlike/apparel/coronet/Coronet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/coronet/Coronet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet.png diff --git a/textures/things/pawn/humanlike/apparel/coronet/Coronet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/coronet/Coronet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_east.png diff --git a/textures/things/pawn/humanlike/apparel/coronet/Coronet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/coronet/Coronet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_north.png diff --git a/textures/things/pawn/humanlike/apparel/coronet/Coronet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/coronet/Coronet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/coronet/Coronet_south.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat.png diff --git a/textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back.png diff --git a/textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front.png diff --git a/textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side.png diff --git a/textures/things/pawn/humanlike/apparel/crown/Crown.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crown/Crown.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown.png diff --git a/textures/things/pawn/humanlike/apparel/crown/Crown_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crown/Crown_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_east.png diff --git a/textures/things/pawn/humanlike/apparel/crown/Crown_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crown/Crown_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_north.png diff --git a/textures/things/pawn/humanlike/apparel/crown/Crown_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crown/Crown_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crown/Crown_south.png diff --git a/textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic.png diff --git a/textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_east.png diff --git a/textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_north.png diff --git a/textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/crownstellic/CrownStellic_south.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/duster/duster_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/duster/duster_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/duster/duster_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/flophat/Flophat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/flophat/Flophat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat.png diff --git a/textures/things/pawn/humanlike/apparel/flophat/Flophat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/flophat/Flophat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_east.png diff --git a/textures/things/pawn/humanlike/apparel/flophat/Flophat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/flophat/Flophat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_north.png diff --git a/textures/things/pawn/humanlike/apparel/flophat/Flophat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/flophat/Flophat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/flophat/Flophat_south.png diff --git a/textures/things/pawn/humanlike/apparel/gasmask/GasMask.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gasmask/GasMask.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask.png diff --git a/textures/things/pawn/humanlike/apparel/gasmask/GasMask_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gasmask/GasMask_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_east.png diff --git a/textures/things/pawn/humanlike/apparel/gasmask/GasMask_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gasmask/GasMask_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_north.png diff --git a/textures/things/pawn/humanlike/apparel/gasmask/GasMask_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gasmask/GasMask_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gasmask/GasMask_south.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/gunlink/Gunlink.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gunlink/Gunlink.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink.png diff --git a/textures/things/pawn/humanlike/apparel/gunlink/Gunlink_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gunlink/Gunlink_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_east.png diff --git a/textures/things/pawn/humanlike/apparel/gunlink/Gunlink_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gunlink/Gunlink_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_north.png diff --git a/textures/things/pawn/humanlike/apparel/gunlink/Gunlink_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/gunlink/Gunlink_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/gunlink/Gunlink_south.png diff --git a/textures/things/pawn/humanlike/apparel/headwrap/Headwrap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/headwrap/Headwrap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap.png diff --git a/textures/things/pawn/humanlike/apparel/headwrap/Headwrap_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/headwrap/Headwrap_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_east.png diff --git a/textures/things/pawn/humanlike/apparel/headwrap/Headwrap_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/headwrap/Headwrap_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_north.png diff --git a/textures/things/pawn/humanlike/apparel/headwrap/Headwrap_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/headwrap/Headwrap_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/headwrap/Headwrap_south.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/hood/Hood.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/hood/Hood.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood.png diff --git a/textures/things/pawn/humanlike/apparel/hood/Hood_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/hood/Hood_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_east.png diff --git a/textures/things/pawn/humanlike/apparel/hood/Hood_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/hood/Hood_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_north.png diff --git a/textures/things/pawn/humanlike/apparel/hood/Hood_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/hood/Hood_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/hood/Hood_south.png diff --git a/textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset.png diff --git a/textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east.png diff --git a/textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north.png diff --git a/textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/jacket/jacket_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jacket/jacket_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jacket/jacket_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/jumppack/JumpPack.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jumppack/JumpPack.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack.png diff --git a/textures/things/pawn/humanlike/apparel/jumppack/JumpPack_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jumppack/JumpPack_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_east.png diff --git a/textures/things/pawn/humanlike/apparel/jumppack/JumpPack_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jumppack/JumpPack_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_north.png diff --git a/textures/things/pawn/humanlike/apparel/jumppack/JumpPack_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/jumppack/JumpPack_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/jumppack/JumpPack_south.png diff --git a/textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/kidpants/KidPants.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidpants/KidPants.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidpants/KidPants.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidpants/KidPants.png diff --git a/textures/things/pawn/humanlike/apparel/kidparka/KidParka.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidparka/KidParka.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka.png diff --git a/textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_east.png diff --git a/textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_north.png diff --git a/textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidparka/KidParka_Child_south.png diff --git a/textures/things/pawn/humanlike/apparel/kidromper/KidRomper.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidromper/KidRomper.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper.png diff --git a/textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east.png diff --git a/textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north.png diff --git a/textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south.png diff --git a/textures/things/pawn/humanlike/apparel/kidshirt/KidShirt.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidshirt/KidShirt.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt.png diff --git a/textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east.png diff --git a/textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north.png diff --git a/textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south.png diff --git a/textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear.png diff --git a/textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east.png diff --git a/textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north.png diff --git a/textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat.png diff --git a/textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_east.png diff --git a/textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_north.png diff --git a/textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/ladieshat/LadiesHat_south.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/parka/parka_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/parka/parka_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/parka/parka_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front.png diff --git a/textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm.png diff --git a/textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet.png diff --git a/textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back.png diff --git a/textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front.png diff --git a/textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/robe/Robe_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/robe/Robe_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/robe/Robe_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south.png diff --git a/textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.zip b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.zip similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.zip rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_north.zip diff --git a/textures/things/pawn/humanlike/apparel/sash/Sash_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/sash/Sash_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/sash/Sash_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/shadecone/Shadecone.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shadecone/Shadecone.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone.png diff --git a/textures/things/pawn/humanlike/apparel/shadecone/Shadecone_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shadecone/Shadecone_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_east.png diff --git a/textures/things/pawn/humanlike/apparel/shadecone/Shadecone_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shadecone/Shadecone_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_north.png diff --git a/textures/things/pawn/humanlike/apparel/shadecone/Shadecone_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shadecone/Shadecone_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shadecone/Shadecone_south.png diff --git a/textures/things/pawn/humanlike/apparel/shieldbelt/shieldbelt.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shieldbelt/shieldbelt.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shieldbelt/shieldbelt.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shieldbelt/shieldbelt.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet.png diff --git a/textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back.png diff --git a/textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front.png diff --git a/textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side.png diff --git a/textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar.png diff --git a/textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east.png diff --git a/textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north.png diff --git a/textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCap.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_east.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_north.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapA_south.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_east.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_north.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapB_south.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_east.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_north.png diff --git a/textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/slicecap/SliceCapC_south.png diff --git a/textures/things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt.png diff --git a/textures/things/pawn/humanlike/apparel/tailcap/Tailcap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tailcap/Tailcap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap.png diff --git a/textures/things/pawn/humanlike/apparel/tailcap/Tailcap_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tailcap/Tailcap_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_east.png diff --git a/textures/things/pawn/humanlike/apparel/tailcap/Tailcap_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tailcap/Tailcap_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_north.png diff --git a/textures/things/pawn/humanlike/apparel/tailcap/Tailcap_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tailcap/Tailcap_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tailcap/Tailcap_south.png diff --git a/textures/things/pawn/humanlike/apparel/tophat/TopHat.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tophat/TopHat.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat.png diff --git a/textures/things/pawn/humanlike/apparel/tophat/TopHat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tophat/TopHat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_east.png diff --git a/textures/things/pawn/humanlike/apparel/tophat/TopHat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tophat/TopHat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_north.png diff --git a/textures/things/pawn/humanlike/apparel/tophat/TopHat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tophat/TopHat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tophat/TopHat_south.png diff --git a/textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown.png diff --git a/textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_east.png diff --git a/textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_north.png diff --git a/textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/torturecrown/TortureCrown_south.png diff --git a/textures/things/pawn/humanlike/apparel/toxpack/ToxPack.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/toxpack/ToxPack.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack.png diff --git a/textures/things/pawn/humanlike/apparel/toxpack/ToxPack_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/toxpack/ToxPack_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_east.png diff --git a/textures/things/pawn/humanlike/apparel/toxpack/ToxPack_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/toxpack/ToxPack_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_north.png diff --git a/textures/things/pawn/humanlike/apparel/toxpack/ToxPack_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/toxpack/ToxPack_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/toxpack/ToxPack_south.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/tribala/tribala_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribala/tribala_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribala/tribala_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress.png diff --git a/textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east.png diff --git a/textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north.png diff --git a/textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south.png diff --git a/textures/things/pawn/humanlike/apparel/tuque/tuque.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tuque/tuque.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque.png diff --git a/textures/things/pawn/humanlike/apparel/tuque/tuque_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tuque/tuque_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_back.png diff --git a/textures/things/pawn/humanlike/apparel/tuque/tuque_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tuque/tuque_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_front.png diff --git a/textures/things/pawn/humanlike/apparel/tuque/tuque_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/tuque/tuque_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/tuque/tuque_side.png diff --git a/textures/things/pawn/humanlike/apparel/various/pants_onmap.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/various/pants_onmap.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/various/pants_onmap.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/various/pants_onmap.png diff --git a/textures/things/pawn/humanlike/apparel/veil/Veil.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/veil/Veil.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil.png diff --git a/textures/things/pawn/humanlike/apparel/veil/Veil_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/veil/Veil_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_east.png diff --git a/textures/things/pawn/humanlike/apparel/veil/Veil_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/veil/Veil_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_north.png diff --git a/textures/things/pawn/humanlike/apparel/veil/Veil_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/veil/Veil_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/veil/Veil_south.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_back.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_front.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_fat_side.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_back.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_front.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_female_side.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_back.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_front.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_male_side.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_back.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_front.png diff --git a/textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestplate/vestplate_thin_side.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMask.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMask.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMask.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMask.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_east.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_north.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskA_south.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_east.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_north.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskB_south.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_east.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_north.png diff --git a/textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/visagemask/VisageMaskC_south.png diff --git a/textures/things/pawn/humanlike/apparel/warmask/WarMask.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/warmask/WarMask.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask.png diff --git a/textures/things/pawn/humanlike/apparel/warmask/WarMask_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/warmask/WarMask_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_east.png diff --git a/textures/things/pawn/humanlike/apparel/warmask/WarMask_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/warmask/WarMask_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_north.png diff --git a/textures/things/pawn/humanlike/apparel/warmask/WarMask_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparel/warmask/WarMask_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparel/warmask/WarMask_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south.png diff --git a/textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist.png diff --git a/textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east.png diff --git a/textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north.png diff --git a/textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south.png b/Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south.png similarity index 100% rename from textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardAnchor_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardAnchor_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardAnchor_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardAnchor_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardAnchor_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardAnchor_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardAnchor_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardBalin_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBalin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardBalin_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBalin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardBalin_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBalin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBalin_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardBifur_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBifur_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardBifur_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBifur_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardBifur_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBifur_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBifur_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardBoxed_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBoxed_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardBoxed_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBoxed_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardBoxed_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardBoxed_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardBoxed_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardCircle_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCircle_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardCircle_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCircle_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardCircle_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCircle_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCircle_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardCleanShaven_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCleanShaven_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardCleanShaven_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCleanShaven_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardCleanShaven_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCleanShaven_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCleanShaven_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurly_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurly_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurly_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurly_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurly_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurly_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurly_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurtain_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurtain_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurtain_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurtain_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardCurtain_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardCurtain_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardCurtain_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardDori_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDori_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardDori_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDori_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardDori_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDori_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDori_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardDucktail_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDucktail_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardDucktail_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDucktail_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardDucktail_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDucktail_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDucktail_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardDwalin_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDwalin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardDwalin_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDwalin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardDwalin_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardDwalin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardDwalin_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFork_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFork_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFork_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFork_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardFork_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFork_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFork_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFrench_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFrench_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFrench_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFrench_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardFrench_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFrench_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFrench_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFull_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFull_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFull_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFull_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardFull_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFull_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFull_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinKnots_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinKnots_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinKnots_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinKnots_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinKnots_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinKnots_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinKnots_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinKnots_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMegabraid_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMonkey_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMonkey_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMonkey_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMonkey_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMonkey_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMonkey_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMonkey_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMonkey_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMoustache_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMoustache_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMoustache_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMoustache_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinMoustache_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMoustache_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinMoustache_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinMoustache_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinScruffy_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinScruffy_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinScruffy_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinScruffy_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinScruffy_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinScruffy_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinScruffy_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinScruffy_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSenile_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSenile_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSenile_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSenile_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSenile_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSenile_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSenile_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSenile_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSideChops_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideChops_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSideChops_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideChops_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSideChops_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideChops_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSideChops_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideChops_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinSideTufts_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardFurskinStrongChops_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardGoatee_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardGoatee_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardGoatee_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardGoatee_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardGoatee_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardGoatee_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardGoatee_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardImperial_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardImperial_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardImperial_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardImperial_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardImperial_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardImperial_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardImperial_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardKhal_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardKhal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardKhal_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardKhal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardKhal_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardKhal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardKhal_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardLincoln_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLincoln_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardLincoln_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLincoln_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardLincoln_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLincoln_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLincoln_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardLongDutch_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLongDutch_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardLongDutch_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLongDutch_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardLongDutch_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardLongDutch_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardLongDutch_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardMachete_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMachete_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardMachete_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMachete_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardMachete_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMachete_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMachete_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardMoustache_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMoustache_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardMoustache_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMoustache_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardMoustache_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMoustache_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMoustache_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardMuttonChops_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMuttonChops_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardMuttonChops_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMuttonChops_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardMuttonChops_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardMuttonChops_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardMuttonChops_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardNori_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardNori_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardNori_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardNori_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardNori_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardNori_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardNori_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardOldDutch_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardOldDutch_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardOldDutch_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardOldDutch_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardOldDutch_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardOldDutch_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardOldDutch_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardSeer_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSeer_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardSeer_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSeer_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardSeer_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSeer_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSeer_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardSideWhiskers_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSideWhiskers_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardSideWhiskers_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSideWhiskers_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardSideWhiskers_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSideWhiskers_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSideWhiskers_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardSoulPatch_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSoulPatch_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardSoulPatch_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSoulPatch_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardSoulPatch_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardSoulPatch_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardSoulPatch_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardStubble_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardStubble_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardStubble_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardStubble_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardStubble_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardStubble_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardStubble_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardUrist_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardUrist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardUrist_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardUrist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardUrist_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardUrist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardUrist_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardVanDyke_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardVanDyke_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardVanDyke_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardVanDyke_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardVanDyke_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardVanDyke_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardVanDyke_south.png diff --git a/textures/things/pawn/humanlike/beards/BeardWizard_east.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_east.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardWizard_east.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_east.png diff --git a/textures/things/pawn/humanlike/beards/BeardWizard_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardWizard_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_north.png diff --git a/textures/things/pawn/humanlike/beards/BeardWizard_south.png b/Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_south.png similarity index 100% rename from textures/things/pawn/humanlike/beards/BeardWizard_south.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/BeardWizard_south.png diff --git a/textures/things/pawn/humanlike/beards/Slicked_north.png b/Mods/Core/Textures/things/pawn/humanlike/beards/Slicked_north.png similarity index 100% rename from textures/things/pawn/humanlike/beards/Slicked_north.png rename to Mods/Core/Textures/things/pawn/humanlike/beards/Slicked_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Fat_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Fat_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_east.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Fat_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Fat_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Fat_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Fat_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Fat_south.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Female_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Female_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_east.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Female_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Female_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Female_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Female_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Female_south.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Hulk_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Hulk_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_east.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Hulk_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Hulk_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Hulk_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Hulk_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Hulk_south.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Male_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Male_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_east.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Male_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Male_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Male_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Male_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Male_south.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Thin_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Thin_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_east.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Thin_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Thin_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_north.png diff --git a/textures/things/pawn/humanlike/bodies/FurCovered_Thin_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/FurCovered_Thin_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/FurCovered_Thin_south.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_east.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_north.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_Child_south.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_FurChild_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_FurChild_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_east.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_FurChild_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_FurChild_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_north.png diff --git a/textures/things/pawn/humanlike/bodies/Naked_FurChild_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/Naked_FurChild_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/Naked_FurChild_south.png diff --git a/textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east.png diff --git a/textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north.png diff --git a/textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south.png diff --git a/textures/things/pawn/humanlike/bodies/naked_fat_back.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_back.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_fat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_back.png diff --git a/textures/things/pawn/humanlike/bodies/naked_fat_front.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_front.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_fat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_front.png diff --git a/textures/things/pawn/humanlike/bodies/naked_fat_side.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_side.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_fat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_fat_side.png diff --git a/textures/things/pawn/humanlike/bodies/naked_female_back.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_back.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_female_back.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_back.png diff --git a/textures/things/pawn/humanlike/bodies/naked_female_front.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_front.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_female_front.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_front.png diff --git a/textures/things/pawn/humanlike/bodies/naked_female_side.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_side.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_female_side.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_female_side.png diff --git a/textures/things/pawn/humanlike/bodies/naked_hulk_back.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_back.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_hulk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_back.png diff --git a/textures/things/pawn/humanlike/bodies/naked_hulk_front.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_front.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_hulk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_front.png diff --git a/textures/things/pawn/humanlike/bodies/naked_hulk_side.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_side.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_hulk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_hulk_side.png diff --git a/textures/things/pawn/humanlike/bodies/naked_male_back.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_back.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_male_back.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_back.png diff --git a/textures/things/pawn/humanlike/bodies/naked_male_front.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_front.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_male_front.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_front.png diff --git a/textures/things/pawn/humanlike/bodies/naked_male_side.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_side.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_male_side.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_male_side.png diff --git a/textures/things/pawn/humanlike/bodies/naked_thin_back.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_back.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_thin_back.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_back.png diff --git a/textures/things/pawn/humanlike/bodies/naked_thin_front.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_front.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_thin_front.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_front.png diff --git a/textures/things/pawn/humanlike/bodies/naked_thin_side.png b/Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_side.png similarity index 100% rename from textures/things/pawn/humanlike/bodies/naked_thin_side.png rename to Mods/Core/Textures/things/pawn/humanlike/bodies/naked_thin_side.png diff --git a/textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east.png diff --git a/textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north.png diff --git a/textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south.png diff --git a/textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east.png diff --git a/textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north.png diff --git a/textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south.png b/Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south.png similarity index 100% rename from textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south.png rename to Mods/Core/Textures/things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south.png diff --git a/textures/things/pawn/humanlike/hairs/Ponytails_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Ponytails_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Ponytails_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Ponytails_south.png diff --git a/textures/things/pawn/humanlike/hairs/Primal_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Primal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_east.png diff --git a/textures/things/pawn/humanlike/hairs/Primal_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Primal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_north.png diff --git a/textures/things/pawn/humanlike/hairs/Primal_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Primal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Primal_south.png diff --git a/textures/things/pawn/humanlike/hairs/Randy_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Randy_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_east.png diff --git a/textures/things/pawn/humanlike/hairs/Randy_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Randy_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_north.png diff --git a/textures/things/pawn/humanlike/hairs/Randy_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Randy_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Randy_south.png diff --git a/textures/things/pawn/humanlike/hairs/Recruit_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Recruit_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_east.png diff --git a/textures/things/pawn/humanlike/hairs/Recruit_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Recruit_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_north.png diff --git a/textures/things/pawn/humanlike/hairs/Recruit_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Recruit_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Recruit_south.png diff --git a/textures/things/pawn/humanlike/hairs/Revolt_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Revolt_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_east.png diff --git a/textures/things/pawn/humanlike/hairs/Revolt_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Revolt_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_north.png diff --git a/textures/things/pawn/humanlike/hairs/Revolt_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Revolt_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Revolt_south.png diff --git a/textures/things/pawn/humanlike/hairs/Rockstar_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rockstar_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_east.png diff --git a/textures/things/pawn/humanlike/hairs/Rockstar_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rockstar_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_north.png diff --git a/textures/things/pawn/humanlike/hairs/Rockstar_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rockstar_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rockstar_south.png diff --git a/textures/things/pawn/humanlike/hairs/Rookie_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rookie_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_east.png diff --git a/textures/things/pawn/humanlike/hairs/Rookie_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rookie_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_north.png diff --git a/textures/things/pawn/humanlike/hairs/Rookie_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Rookie_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Rookie_south.png diff --git a/textures/things/pawn/humanlike/hairs/Savage_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Savage_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_east.png diff --git a/textures/things/pawn/humanlike/hairs/Savage_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Savage_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_north.png diff --git a/textures/things/pawn/humanlike/hairs/Savage_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Savage_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Savage_south.png diff --git a/textures/things/pawn/humanlike/hairs/Scrapper_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Scrapper_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_east.png diff --git a/textures/things/pawn/humanlike/hairs/Scrapper_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Scrapper_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_north.png diff --git a/textures/things/pawn/humanlike/hairs/Scrapper_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Scrapper_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Scrapper_south.png diff --git a/textures/things/pawn/humanlike/hairs/Snazzy_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Snazzy_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_east.png diff --git a/textures/things/pawn/humanlike/hairs/Snazzy_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Snazzy_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_north.png diff --git a/textures/things/pawn/humanlike/hairs/Snazzy_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Snazzy_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Snazzy_south.png diff --git a/textures/things/pawn/humanlike/hairs/Sticky_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Sticky_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_east.png diff --git a/textures/things/pawn/humanlike/hairs/Sticky_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Sticky_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_north.png diff --git a/textures/things/pawn/humanlike/hairs/Sticky_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Sticky_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Sticky_south.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCeremonial_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCeremonial_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_east.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCeremonial_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCeremonial_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_north.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCeremonial_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCeremonial_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCeremonial_south.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCircular_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCircular_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_east.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCircular_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCircular_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_north.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallCircular_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallCircular_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallCircular_south.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallRectangular_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallRectangular_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_east.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallRectangular_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallRectangular_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_north.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallRectangular_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallRectangular_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallRectangular_south.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallSpotted_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallSpotted_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_east.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallSpotted_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallSpotted_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_north.png diff --git a/textures/things/pawn/humanlike/hairs/ThrallSpotted_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/ThrallSpotted_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/ThrallSpotted_south.png diff --git a/textures/things/pawn/humanlike/hairs/Warden_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Warden_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_east.png diff --git a/textures/things/pawn/humanlike/hairs/Warden_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Warden_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_north.png diff --git a/textures/things/pawn/humanlike/hairs/Warden_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/Warden_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/Warden_south.png diff --git a/textures/things/pawn/humanlike/hairs/afro_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/afro_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/afro_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/afro_back.png diff --git a/textures/things/pawn/humanlike/hairs/afro_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/afro_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/afro_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/afro_front.png diff --git a/textures/things/pawn/humanlike/hairs/afro_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/afro_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/afro_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/afro_side.png diff --git a/textures/things/pawn/humanlike/hairs/bob_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/bob_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/bob_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/bob_back.png diff --git a/textures/things/pawn/humanlike/hairs/bob_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/bob_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/bob_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/bob_front.png diff --git a/textures/things/pawn/humanlike/hairs/bob_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/bob_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/bob_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/bob_side.png diff --git a/textures/things/pawn/humanlike/hairs/braidbun_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/braidbun_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_back.png diff --git a/textures/things/pawn/humanlike/hairs/braidbun_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/braidbun_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_front.png diff --git a/textures/things/pawn/humanlike/hairs/braidbun_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/braidbun_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/braidbun_side.png diff --git a/textures/things/pawn/humanlike/hairs/burgundy_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/burgundy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_back.png diff --git a/textures/things/pawn/humanlike/hairs/burgundy_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/burgundy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_front.png diff --git a/textures/things/pawn/humanlike/hairs/burgundy_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/burgundy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/burgundy_side.png diff --git a/textures/things/pawn/humanlike/hairs/curly_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/curly_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/curly_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/curly_back.png diff --git a/textures/things/pawn/humanlike/hairs/curly_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/curly_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/curly_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/curly_front.png diff --git a/textures/things/pawn/humanlike/hairs/curly_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/curly_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/curly_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/curly_side.png diff --git a/textures/things/pawn/humanlike/hairs/firestarter_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/firestarter_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_back.png diff --git a/textures/things/pawn/humanlike/hairs/firestarter_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/firestarter_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_front.png diff --git a/textures/things/pawn/humanlike/hairs/firestarter_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/firestarter_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/firestarter_side.png diff --git a/textures/things/pawn/humanlike/hairs/flowy_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/flowy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_back.png diff --git a/textures/things/pawn/humanlike/hairs/flowy_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/flowy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_front.png diff --git a/textures/things/pawn/humanlike/hairs/flowy_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/flowy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/flowy_side.png diff --git a/textures/things/pawn/humanlike/hairs/gaston_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/gaston_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_back.png diff --git a/textures/things/pawn/humanlike/hairs/gaston_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/gaston_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_front.png diff --git a/textures/things/pawn/humanlike/hairs/gaston_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/gaston_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/gaston_side.png diff --git a/textures/things/pawn/humanlike/hairs/greasyswoop_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/greasyswoop_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_back.png diff --git a/textures/things/pawn/humanlike/hairs/greasyswoop_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/greasyswoop_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_front.png diff --git a/textures/things/pawn/humanlike/hairs/greasyswoop_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/greasyswoop_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/greasyswoop_side.png diff --git a/textures/things/pawn/humanlike/hairs/long_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/long_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/long_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/long_back.png diff --git a/textures/things/pawn/humanlike/hairs/long_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/long_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/long_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/long_front.png diff --git a/textures/things/pawn/humanlike/hairs/long_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/long_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/long_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/long_side.png diff --git a/textures/things/pawn/humanlike/hairs/mess_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mess_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mess_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mess_back.png diff --git a/textures/things/pawn/humanlike/hairs/mess_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mess_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mess_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mess_front.png diff --git a/textures/things/pawn/humanlike/hairs/mess_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mess_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mess_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mess_side.png diff --git a/textures/things/pawn/humanlike/hairs/mohawk_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mohawk_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_back.png diff --git a/textures/things/pawn/humanlike/hairs/mohawk_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mohawk_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_front.png diff --git a/textures/things/pawn/humanlike/hairs/mohawk_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mohawk_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mohawk_side.png diff --git a/textures/things/pawn/humanlike/hairs/mop_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mop_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mop_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mop_back.png diff --git a/textures/things/pawn/humanlike/hairs/mop_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mop_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mop_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mop_front.png diff --git a/textures/things/pawn/humanlike/hairs/mop_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/mop_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/mop_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/mop_side.png diff --git a/textures/things/pawn/humanlike/hairs/pigtails_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/pigtails_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_back.png diff --git a/textures/things/pawn/humanlike/hairs/pigtails_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/pigtails_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_front.png diff --git a/textures/things/pawn/humanlike/hairs/pigtails_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/pigtails_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/pigtails_side.png diff --git a/textures/things/pawn/humanlike/hairs/princess_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/princess_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/princess_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/princess_back.png diff --git a/textures/things/pawn/humanlike/hairs/princess_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/princess_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/princess_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/princess_front.png diff --git a/textures/things/pawn/humanlike/hairs/princess_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/princess_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/princess_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/princess_side.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Anne_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Anne_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Anne_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Anne_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Anne_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Anne_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Anne_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Artist_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Artist_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Artist_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Artist_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Artist_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Artist_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Artist_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Elisabeth_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Elisabeth_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Elisabeth_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Elisabeth_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Elisabeth_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Elisabeth_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Elisabeth_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Henry_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Henry_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Henry_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Henry_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Henry_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Henry_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Henry_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Jane_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Jane_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Jane_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Jane_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Jane_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Jane_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Jane_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Mary_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Mary_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Mary_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Mary_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Mary_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Mary_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Mary_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Richard_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Richard_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Richard_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Richard_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Richard_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Richard_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Richard_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Stephen_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Stephen_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Stephen_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Stephen_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Stephen_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Stephen_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Stephen_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Victoria_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Victoria_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Victoria_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Victoria_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/Victoria_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/Victoria_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/Victoria_south.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/William_east.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_east.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/William_east.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_east.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/William_north.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_north.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/William_north.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_north.png diff --git a/textures/things/pawn/humanlike/hairs/royalty/William_south.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_south.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/royalty/William_south.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/royalty/William_south.png diff --git a/textures/things/pawn/humanlike/hairs/scat_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scat_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scat_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scat_back.png diff --git a/textures/things/pawn/humanlike/hairs/scat_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scat_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scat_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scat_front.png diff --git a/textures/things/pawn/humanlike/hairs/scat_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scat_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scat_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scat_side.png diff --git a/textures/things/pawn/humanlike/hairs/scorpiontail_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scorpiontail_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_back.png diff --git a/textures/things/pawn/humanlike/hairs/scorpiontail_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scorpiontail_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_front.png diff --git a/textures/things/pawn/humanlike/hairs/scorpiontail_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/scorpiontail_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/scorpiontail_side.png diff --git a/textures/things/pawn/humanlike/hairs/senorita_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/senorita_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_back.png diff --git a/textures/things/pawn/humanlike/hairs/senorita_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/senorita_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_front.png diff --git a/textures/things/pawn/humanlike/hairs/senorita_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/senorita_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/senorita_side.png diff --git a/textures/things/pawn/humanlike/hairs/shaved_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/shaved_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_back.png diff --git a/textures/things/pawn/humanlike/hairs/shaved_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/shaved_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_front.png diff --git a/textures/things/pawn/humanlike/hairs/shaved_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/shaved_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/shaved_side.png diff --git a/textures/things/pawn/humanlike/hairs/spikes_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/spikes_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_back.png diff --git a/textures/things/pawn/humanlike/hairs/spikes_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/spikes_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_front.png diff --git a/textures/things/pawn/humanlike/hairs/spikes_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/spikes_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/spikes_side.png diff --git a/textures/things/pawn/humanlike/hairs/topdog_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/topdog_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_back.png diff --git a/textures/things/pawn/humanlike/hairs/topdog_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/topdog_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_front.png diff --git a/textures/things/pawn/humanlike/hairs/topdog_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/topdog_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/topdog_side.png diff --git a/textures/things/pawn/humanlike/hairs/troubadour_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/troubadour_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_back.png diff --git a/textures/things/pawn/humanlike/hairs/troubadour_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/troubadour_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_front.png diff --git a/textures/things/pawn/humanlike/hairs/troubadour_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/troubadour_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/troubadour_side.png diff --git a/textures/things/pawn/humanlike/hairs/tuft_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/tuft_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_back.png diff --git a/textures/things/pawn/humanlike/hairs/tuft_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/tuft_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_front.png diff --git a/textures/things/pawn/humanlike/hairs/tuft_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/tuft_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/tuft_side.png diff --git a/textures/things/pawn/humanlike/hairs/wavy_back.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_back.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/wavy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_back.png diff --git a/textures/things/pawn/humanlike/hairs/wavy_front.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_front.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/wavy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_front.png diff --git a/textures/things/pawn/humanlike/hairs/wavy_side.png b/Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_side.png similarity index 100% rename from textures/things/pawn/humanlike/hairs/wavy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/hairs/wavy_side.png diff --git a/textures/things/pawn/humanlike/headattachments/catears/CatEars_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/catears/CatEars_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_east.png diff --git a/textures/things/pawn/humanlike/headattachments/catears/CatEars_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/catears/CatEars_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_north.png diff --git a/textures/things/pawn/humanlike/headattachments/catears/CatEars_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/catears/CatEars_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/catears/CatEars_south.png diff --git a/textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east.png diff --git a/textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north.png diff --git a/textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east.png diff --git a/textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south.png diff --git a/textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_east.png diff --git a/textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_north.png diff --git a/textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/floppyears/FloppyEars_south.png diff --git a/textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east.png diff --git a/textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south.png diff --git a/textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_east.png diff --git a/textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_north.png diff --git a/textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/minihorns/MiniHorns_south.png diff --git a/textures/things/pawn/humanlike/headattachments/pigears/PigEars_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pigears/PigEars_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_east.png diff --git a/textures/things/pawn/humanlike/headattachments/pigears/PigEars_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pigears/PigEars_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_north.png diff --git a/textures/things/pawn/humanlike/headattachments/pigears/PigEars_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pigears/PigEars_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pigears/PigEars_south.png diff --git a/textures/things/pawn/humanlike/headattachments/pignose/PigNose_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pignose/PigNose_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pignose/PigNose_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pignose/PigNose_east.png diff --git a/textures/things/pawn/humanlike/headattachments/pignose/PigNose_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pignose/PigNose_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pignose/PigNose_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pignose/PigNose_south.png diff --git a/textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_east.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_east.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_east.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_east.png diff --git a/textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_north.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_north.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_north.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_north.png diff --git a/textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_south.png b/Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_south.png similarity index 100% rename from textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_south.png rename to Mods/Core/Textures/things/pawn/humanlike/headattachments/pointedears/PointedEars_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average1_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average2_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Average3_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north.png diff --git a/textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south.png b/Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south.png similarity index 100% rename from textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_normal_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_normal_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_normal_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_normal_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_normal_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_normal_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_normal_side.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_pointy_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_pointy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_pointy_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_pointy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_pointy_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_pointy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_pointy_side.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_wide_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_wide_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_wide_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_wide_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_average_wide_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_average_wide_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_average_wide_side.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_normal_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_normal_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_normal_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_normal_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_normal_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_normal_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_normal_side.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_pointy_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_pointy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_pointy_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_pointy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_pointy_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_pointy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_pointy_side.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_wide_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_wide_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_back.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_wide_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_wide_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_front.png diff --git a/textures/things/pawn/humanlike/heads/female/female_narrow_wide_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/female/female_narrow_wide_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/female/female_narrow_wide_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_normal_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_normal_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_normal_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_normal_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_normal_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_normal_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_normal_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_pointy_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_pointy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_pointy_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_pointy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_pointy_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_pointy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_pointy_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_wide_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_wide_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_wide_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_wide_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_average_wide_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_average_wide_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_average_wide_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_normal_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_normal_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_normal_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_normal_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_normal_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_normal_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_normal_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_pointy_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_pointy_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_pointy_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_pointy_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_pointy_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_pointy_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_pointy_side.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_wide_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_wide_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_back.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_wide_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_wide_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_front.png diff --git a/textures/things/pawn/humanlike/heads/male/male_narrow_wide_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/male/male_narrow_wide_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/male/male_narrow_wide_side.png diff --git a/textures/things/pawn/humanlike/heads/none_average_skull_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_skull_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_back.png diff --git a/textures/things/pawn/humanlike/heads/none_average_skull_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_skull_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_front.png diff --git a/textures/things/pawn/humanlike/heads/none_average_skull_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_skull_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_skull_side.png diff --git a/textures/things/pawn/humanlike/heads/none_average_stump_back.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_back.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_stump_back.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_back.png diff --git a/textures/things/pawn/humanlike/heads/none_average_stump_front.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_front.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_stump_front.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_front.png diff --git a/textures/things/pawn/humanlike/heads/none_average_stump_side.png b/Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_side.png similarity index 100% rename from textures/things/pawn/humanlike/heads/none_average_stump_side.png rename to Mods/Core/Textures/things/pawn/humanlike/heads/none_average_stump_side.png diff --git a/textures/things/pawn/humanlike/humanoiddessicated_back.png b/Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_back.png similarity index 100% rename from textures/things/pawn/humanlike/humanoiddessicated_back.png rename to Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_back.png diff --git a/textures/things/pawn/humanlike/humanoiddessicated_front.png b/Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_front.png similarity index 100% rename from textures/things/pawn/humanlike/humanoiddessicated_front.png rename to Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_front.png diff --git a/textures/things/pawn/humanlike/humanoiddessicated_side.png b/Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_side.png similarity index 100% rename from textures/things/pawn/humanlike/humanoiddessicated_side.png rename to Mods/Core/Textures/things/pawn/humanlike/humanoiddessicated_side.png diff --git a/textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_cross/TattooCross_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_heart/Body_Heart_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_insect/TattooInsect_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_jester/TattooJester_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_moon/TattooMoon_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_power/TattooPower_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_power/TattooPower_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_power/TattooPower_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_power/TattooPower_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_power/TattooPower_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_power/TattooPower_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_power/TattooPower_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_rings/TattooRings_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_scar/TattooScar_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_skull/Body_Skull_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_spike/TattooSpike_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_sun/TattooSun_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north.png diff --git a/textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south.png diff --git a/textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_east.png diff --git a/textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/body_wings/TattooWings_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tear/Face_Tear_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north.png diff --git a/textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south.png diff --git a/textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east.png diff --git a/textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south.png b/Mods/Core/Textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south.png similarity index 100% rename from textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south.png rename to Mods/Core/Textures/things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south.png diff --git a/textures/things/pawn/humanlike/ui/iconhuman.png b/Mods/Core/Textures/things/pawn/humanlike/ui/iconhuman.png similarity index 100% rename from textures/things/pawn/humanlike/ui/iconhuman.png rename to Mods/Core/Textures/things/pawn/humanlike/ui/iconhuman.png diff --git a/textures/things/pawn/mechanoid/ApocritonAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/ApocritonAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_east.png diff --git a/textures/things/pawn/mechanoid/ApocritonAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/ApocritonAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_north.png diff --git a/textures/things/pawn/mechanoid/ApocritonAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/ApocritonAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/ApocritonAncient_south.png diff --git a/textures/things/pawn/mechanoid/Apocriton_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Apocriton_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Apocriton_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Apocriton_east.png diff --git a/textures/things/pawn/mechanoid/Apocriton_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Apocriton_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Apocriton_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Apocriton_north.png diff --git a/textures/things/pawn/mechanoid/Apocriton_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Apocriton_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Apocriton_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Apocriton_south.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurnerClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurnerClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_east.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurnerClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurnerClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_north.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurnerClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurnerClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurnerClean_south.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurner_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurner_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_east.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurner_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurner_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_north.png diff --git a/textures/things/pawn/mechanoid/CentipedeBurner_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeBurner_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeBurner_south.png diff --git a/textures/things/pawn/mechanoid/CentipedeClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_east.png diff --git a/textures/things/pawn/mechanoid/CentipedeClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_north.png diff --git a/textures/things/pawn/mechanoid/CentipedeClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeClean_south.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunnerClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunnerClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_east.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunnerClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunnerClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_north.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunnerClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunnerClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunnerClean_south.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunner_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunner_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_east.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunner_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunner_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_north.png diff --git a/textures/things/pawn/mechanoid/CentipedeGunner_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CentipedeGunner_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CentipedeGunner_south.png diff --git a/textures/things/pawn/mechanoid/Centipede_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Centipede_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Centipede_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centipede_east.png diff --git a/textures/things/pawn/mechanoid/Centipede_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Centipede_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Centipede_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centipede_north.png diff --git a/textures/things/pawn/mechanoid/Centipede_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Centipede_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Centipede_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centipede_south.png diff --git a/textures/things/pawn/mechanoid/CenturionAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/CenturionAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_east.png diff --git a/textures/things/pawn/mechanoid/CenturionAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/CenturionAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_north.png diff --git a/textures/things/pawn/mechanoid/CenturionAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/CenturionAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/CenturionAncient_south.png diff --git a/textures/things/pawn/mechanoid/Centurion_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Centurion_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Centurion_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centurion_east.png diff --git a/textures/things/pawn/mechanoid/Centurion_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Centurion_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Centurion_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centurion_north.png diff --git a/textures/things/pawn/mechanoid/Centurion_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Centurion_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Centurion_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Centurion_south.png diff --git a/textures/things/pawn/mechanoid/DiabolusAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/DiabolusAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_east.png diff --git a/textures/things/pawn/mechanoid/DiabolusAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/DiabolusAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_north.png diff --git a/textures/things/pawn/mechanoid/DiabolusAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/DiabolusAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/DiabolusAncient_south.png diff --git a/textures/things/pawn/mechanoid/Diabolus_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Diabolus_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Diabolus_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Diabolus_east.png diff --git a/textures/things/pawn/mechanoid/Diabolus_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Diabolus_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Diabolus_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Diabolus_north.png diff --git a/textures/things/pawn/mechanoid/Diabolus_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Diabolus_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Diabolus_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Diabolus_south.png diff --git a/textures/things/pawn/mechanoid/HalfGestatedMechLarge.png b/Mods/Core/Textures/things/pawn/mechanoid/HalfGestatedMechLarge.png similarity index 100% rename from textures/things/pawn/mechanoid/HalfGestatedMechLarge.png rename to Mods/Core/Textures/things/pawn/mechanoid/HalfGestatedMechLarge.png diff --git a/textures/things/pawn/mechanoid/HalfGestatedMechSmall.png b/Mods/Core/Textures/things/pawn/mechanoid/HalfGestatedMechSmall.png similarity index 100% rename from textures/things/pawn/mechanoid/HalfGestatedMechSmall.png rename to Mods/Core/Textures/things/pawn/mechanoid/HalfGestatedMechSmall.png diff --git a/textures/things/pawn/mechanoid/LancerClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/LancerClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/LancerClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/LancerClean_east.png diff --git a/textures/things/pawn/mechanoid/LancerClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/LancerClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/LancerClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/LancerClean_north.png diff --git a/textures/things/pawn/mechanoid/LancerClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/LancerClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/LancerClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/LancerClean_south.png diff --git a/textures/things/pawn/mechanoid/Lancer_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Lancer_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Lancer_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Lancer_east.png diff --git a/textures/things/pawn/mechanoid/Lancer_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Lancer_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Lancer_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Lancer_north.png diff --git a/textures/things/pawn/mechanoid/Lancer_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Lancer_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Lancer_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Lancer_south.png diff --git a/textures/things/pawn/mechanoid/LegionaryAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/LegionaryAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_east.png diff --git a/textures/things/pawn/mechanoid/LegionaryAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/LegionaryAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_north.png diff --git a/textures/things/pawn/mechanoid/LegionaryAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/LegionaryAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/LegionaryAncient_south.png diff --git a/textures/things/pawn/mechanoid/Legionary_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Legionary_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Legionary_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Legionary_east.png diff --git a/textures/things/pawn/mechanoid/Legionary_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Legionary_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Legionary_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Legionary_north.png diff --git a/textures/things/pawn/mechanoid/Legionary_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Legionary_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Legionary_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Legionary_south.png diff --git a/textures/things/pawn/mechanoid/ParamedicAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/ParamedicAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_east.png diff --git a/textures/things/pawn/mechanoid/ParamedicAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/ParamedicAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_north.png diff --git a/textures/things/pawn/mechanoid/ParamedicAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/ParamedicAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/ParamedicAncient_south.png diff --git a/textures/things/pawn/mechanoid/Paramedic_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Paramedic_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Paramedic_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Paramedic_east.png diff --git a/textures/things/pawn/mechanoid/Paramedic_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Paramedic_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Paramedic_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Paramedic_north.png diff --git a/textures/things/pawn/mechanoid/Paramedic_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Paramedic_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Paramedic_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Paramedic_south.png diff --git a/textures/things/pawn/mechanoid/PikemanClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/PikemanClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_east.png diff --git a/textures/things/pawn/mechanoid/PikemanClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/PikemanClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_north.png diff --git a/textures/things/pawn/mechanoid/PikemanClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/PikemanClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/PikemanClean_south.png diff --git a/textures/things/pawn/mechanoid/Pikeman_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Pikeman_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Pikeman_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Pikeman_east.png diff --git a/textures/things/pawn/mechanoid/Pikeman_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Pikeman_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Pikeman_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Pikeman_north.png diff --git a/textures/things/pawn/mechanoid/Pikeman_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Pikeman_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Pikeman_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Pikeman_south.png diff --git a/textures/things/pawn/mechanoid/ScorcherAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/ScorcherAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_east.png diff --git a/textures/things/pawn/mechanoid/ScorcherAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/ScorcherAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_north.png diff --git a/textures/things/pawn/mechanoid/ScorcherAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/ScorcherAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScorcherAncient_south.png diff --git a/textures/things/pawn/mechanoid/Scorcher_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Scorcher_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Scorcher_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scorcher_east.png diff --git a/textures/things/pawn/mechanoid/Scorcher_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Scorcher_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Scorcher_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scorcher_north.png diff --git a/textures/things/pawn/mechanoid/Scorcher_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Scorcher_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Scorcher_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scorcher_south.png diff --git a/textures/things/pawn/mechanoid/ScytherClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/ScytherClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_east.png diff --git a/textures/things/pawn/mechanoid/ScytherClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/ScytherClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_north.png diff --git a/textures/things/pawn/mechanoid/ScytherClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/ScytherClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/ScytherClean_south.png diff --git a/textures/things/pawn/mechanoid/Scyther_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Scyther_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Scyther_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scyther_east.png diff --git a/textures/things/pawn/mechanoid/Scyther_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Scyther_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Scyther_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scyther_north.png diff --git a/textures/things/pawn/mechanoid/Scyther_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Scyther_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Scyther_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Scyther_south.png diff --git a/textures/things/pawn/mechanoid/TermiteClean_east.png b/Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_east.png similarity index 100% rename from textures/things/pawn/mechanoid/TermiteClean_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_east.png diff --git a/textures/things/pawn/mechanoid/TermiteClean_north.png b/Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_north.png similarity index 100% rename from textures/things/pawn/mechanoid/TermiteClean_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_north.png diff --git a/textures/things/pawn/mechanoid/TermiteClean_south.png b/Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_south.png similarity index 100% rename from textures/things/pawn/mechanoid/TermiteClean_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/TermiteClean_south.png diff --git a/textures/things/pawn/mechanoid/Termite_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Termite_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Termite_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Termite_east.png diff --git a/textures/things/pawn/mechanoid/Termite_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Termite_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Termite_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Termite_north.png diff --git a/textures/things/pawn/mechanoid/Termite_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Termite_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Termite_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Termite_south.png diff --git a/textures/things/pawn/mechanoid/TesseronAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/TesseronAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_east.png diff --git a/textures/things/pawn/mechanoid/TesseronAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/TesseronAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_north.png diff --git a/textures/things/pawn/mechanoid/TesseronAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/TesseronAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/TesseronAncient_south.png diff --git a/textures/things/pawn/mechanoid/Tesseron_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Tesseron_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Tesseron_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tesseron_east.png diff --git a/textures/things/pawn/mechanoid/Tesseron_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Tesseron_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Tesseron_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tesseron_north.png diff --git a/textures/things/pawn/mechanoid/Tesseron_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Tesseron_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Tesseron_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tesseron_south.png diff --git a/textures/things/pawn/mechanoid/TunnelerAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/TunnelerAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_east.png diff --git a/textures/things/pawn/mechanoid/TunnelerAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/TunnelerAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_north.png diff --git a/textures/things/pawn/mechanoid/TunnelerAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/TunnelerAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/TunnelerAncient_south.png diff --git a/textures/things/pawn/mechanoid/Tunneler_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Tunneler_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Tunneler_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tunneler_east.png diff --git a/textures/things/pawn/mechanoid/Tunneler_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Tunneler_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Tunneler_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tunneler_north.png diff --git a/textures/things/pawn/mechanoid/Tunneler_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Tunneler_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Tunneler_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Tunneler_south.png diff --git a/textures/things/pawn/mechanoid/WarqueenAncient_east.png b/Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_east.png similarity index 100% rename from textures/things/pawn/mechanoid/WarqueenAncient_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_east.png diff --git a/textures/things/pawn/mechanoid/WarqueenAncient_north.png b/Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_north.png similarity index 100% rename from textures/things/pawn/mechanoid/WarqueenAncient_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_north.png diff --git a/textures/things/pawn/mechanoid/WarqueenAncient_south.png b/Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_south.png similarity index 100% rename from textures/things/pawn/mechanoid/WarqueenAncient_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/WarqueenAncient_south.png diff --git a/textures/things/pawn/mechanoid/Warqueen_east.png b/Mods/Core/Textures/things/pawn/mechanoid/Warqueen_east.png similarity index 100% rename from textures/things/pawn/mechanoid/Warqueen_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/Warqueen_east.png diff --git a/textures/things/pawn/mechanoid/Warqueen_north.png b/Mods/Core/Textures/things/pawn/mechanoid/Warqueen_north.png similarity index 100% rename from textures/things/pawn/mechanoid/Warqueen_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/Warqueen_north.png diff --git a/textures/things/pawn/mechanoid/Warqueen_south.png b/Mods/Core/Textures/things/pawn/mechanoid/Warqueen_south.png similarity index 100% rename from textures/things/pawn/mechanoid/Warqueen_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/Warqueen_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north.png diff --git a/textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south.png b/Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south.png similarity index 100% rename from textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south.png rename to Mods/Core/Textures/things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south.png diff --git a/textures/things/pawn/mechanoid/apparel/HeavyPersonalShield.png b/Mods/Core/Textures/things/pawn/mechanoid/apparel/HeavyPersonalShield.png similarity index 100% rename from textures/things/pawn/mechanoid/apparel/HeavyPersonalShield.png rename to Mods/Core/Textures/things/pawn/mechanoid/apparel/HeavyPersonalShield.png diff --git a/textures/things/pawn/mechanoid/centipede_back.png b/Mods/Core/Textures/things/pawn/mechanoid/centipede_back.png similarity index 100% rename from textures/things/pawn/mechanoid/centipede_back.png rename to Mods/Core/Textures/things/pawn/mechanoid/centipede_back.png diff --git a/textures/things/pawn/mechanoid/centipede_front.png b/Mods/Core/Textures/things/pawn/mechanoid/centipede_front.png similarity index 100% rename from textures/things/pawn/mechanoid/centipede_front.png rename to Mods/Core/Textures/things/pawn/mechanoid/centipede_front.png diff --git a/textures/things/pawn/mechanoid/centipede_side.png b/Mods/Core/Textures/things/pawn/mechanoid/centipede_side.png similarity index 100% rename from textures/things/pawn/mechanoid/centipede_side.png rename to Mods/Core/Textures/things/pawn/mechanoid/centipede_side.png diff --git a/textures/things/pawn/mechanoid/scyther_back.png b/Mods/Core/Textures/things/pawn/mechanoid/scyther_back.png similarity index 100% rename from textures/things/pawn/mechanoid/scyther_back.png rename to Mods/Core/Textures/things/pawn/mechanoid/scyther_back.png diff --git a/textures/things/pawn/mechanoid/scyther_front.png b/Mods/Core/Textures/things/pawn/mechanoid/scyther_front.png similarity index 100% rename from textures/things/pawn/mechanoid/scyther_front.png rename to Mods/Core/Textures/things/pawn/mechanoid/scyther_front.png diff --git a/textures/things/pawn/mechanoid/scyther_side.png b/Mods/Core/Textures/things/pawn/mechanoid/scyther_side.png similarity index 100% rename from textures/things/pawn/mechanoid/scyther_side.png rename to Mods/Core/Textures/things/pawn/mechanoid/scyther_side.png diff --git a/textures/things/pawn/wounds/wounda.png b/Mods/Core/Textures/things/pawn/wounds/wounda.png similarity index 100% rename from textures/things/pawn/wounds/wounda.png rename to Mods/Core/Textures/things/pawn/wounds/wounda.png diff --git a/textures/things/pawn/wounds/woundb.png b/Mods/Core/Textures/things/pawn/wounds/woundb.png similarity index 100% rename from textures/things/pawn/wounds/woundb.png rename to Mods/Core/Textures/things/pawn/wounds/woundb.png diff --git a/textures/things/pawn/wounds/woundc.png b/Mods/Core/Textures/things/pawn/wounds/woundc.png similarity index 100% rename from textures/things/pawn/wounds/woundc.png rename to Mods/Core/Textures/things/pawn/wounds/woundc.png diff --git a/textures/things/pawn/wounds/woundflesha.png b/Mods/Core/Textures/things/pawn/wounds/woundflesha.png similarity index 100% rename from textures/things/pawn/wounds/woundflesha.png rename to Mods/Core/Textures/things/pawn/wounds/woundflesha.png diff --git a/textures/things/pawn/wounds/woundfleshb.png b/Mods/Core/Textures/things/pawn/wounds/woundfleshb.png similarity index 100% rename from textures/things/pawn/wounds/woundfleshb.png rename to Mods/Core/Textures/things/pawn/wounds/woundfleshb.png diff --git a/textures/things/pawn/wounds/woundfleshc.png b/Mods/Core/Textures/things/pawn/wounds/woundfleshc.png similarity index 100% rename from textures/things/pawn/wounds/woundfleshc.png rename to Mods/Core/Textures/things/pawn/wounds/woundfleshc.png diff --git a/textures/things/pawn/wounds/woundmecha.png b/Mods/Core/Textures/things/pawn/wounds/woundmecha.png similarity index 100% rename from textures/things/pawn/wounds/woundmecha.png rename to Mods/Core/Textures/things/pawn/wounds/woundmecha.png diff --git a/textures/things/pawn/wounds/woundmechb.png b/Mods/Core/Textures/things/pawn/wounds/woundmechb.png similarity index 100% rename from textures/things/pawn/wounds/woundmechb.png rename to Mods/Core/Textures/things/pawn/wounds/woundmechb.png diff --git a/textures/things/pawn/wounds/woundmechc.png b/Mods/Core/Textures/things/pawn/wounds/woundmechc.png similarity index 100% rename from textures/things/pawn/wounds/woundmechc.png rename to Mods/Core/Textures/things/pawn/wounds/woundmechc.png diff --git a/textures/things/plant/agarilux/AgariluxA.png b/Mods/Core/Textures/things/plant/agarilux/AgariluxA.png similarity index 100% rename from textures/things/plant/agarilux/AgariluxA.png rename to Mods/Core/Textures/things/plant/agarilux/AgariluxA.png diff --git a/textures/things/plant/agarilux/AgariluxB.png b/Mods/Core/Textures/things/plant/agarilux/AgariluxB.png similarity index 100% rename from textures/things/plant/agarilux/AgariluxB.png rename to Mods/Core/Textures/things/plant/agarilux/AgariluxB.png diff --git a/textures/things/plant/agave/AgaveA.png b/Mods/Core/Textures/things/plant/agave/AgaveA.png similarity index 100% rename from textures/things/plant/agave/AgaveA.png rename to Mods/Core/Textures/things/plant/agave/AgaveA.png diff --git a/textures/things/plant/agave/AgaveB.png b/Mods/Core/Textures/things/plant/agave/AgaveB.png similarity index 100% rename from textures/things/plant/agave/AgaveB.png rename to Mods/Core/Textures/things/plant/agave/AgaveB.png diff --git a/textures/things/plant/alocasia/AlocasiaA.png b/Mods/Core/Textures/things/plant/alocasia/AlocasiaA.png similarity index 100% rename from textures/things/plant/alocasia/AlocasiaA.png rename to Mods/Core/Textures/things/plant/alocasia/AlocasiaA.png diff --git a/textures/things/plant/alocasia/AlocasiaB.png b/Mods/Core/Textures/things/plant/alocasia/AlocasiaB.png similarity index 100% rename from textures/things/plant/alocasia/AlocasiaB.png rename to Mods/Core/Textures/things/plant/alocasia/AlocasiaB.png diff --git a/textures/things/plant/ambrosia/Ambrosia.png b/Mods/Core/Textures/things/plant/ambrosia/Ambrosia.png similarity index 100% rename from textures/things/plant/ambrosia/Ambrosia.png rename to Mods/Core/Textures/things/plant/ambrosia/Ambrosia.png diff --git a/textures/things/plant/ambrosia_leafless/ambrosia_leafless.png b/Mods/Core/Textures/things/plant/ambrosia_leafless/ambrosia_leafless.png similarity index 100% rename from textures/things/plant/ambrosia_leafless/ambrosia_leafless.png rename to Mods/Core/Textures/things/plant/ambrosia_leafless/ambrosia_leafless.png diff --git a/textures/things/plant/ambrosiaimmature/ambrosia.png b/Mods/Core/Textures/things/plant/ambrosiaimmature/ambrosia.png similarity index 100% rename from textures/things/plant/ambrosiaimmature/ambrosia.png rename to Mods/Core/Textures/things/plant/ambrosiaimmature/ambrosia.png diff --git a/textures/things/plant/astragalus/astragalusa.png b/Mods/Core/Textures/things/plant/astragalus/astragalusa.png similarity index 100% rename from textures/things/plant/astragalus/astragalusa.png rename to Mods/Core/Textures/things/plant/astragalus/astragalusa.png diff --git a/textures/things/plant/astragalus/astragalusb.png b/Mods/Core/Textures/things/plant/astragalus/astragalusb.png similarity index 100% rename from textures/things/plant/astragalus/astragalusb.png rename to Mods/Core/Textures/things/plant/astragalus/astragalusb.png diff --git a/textures/things/plant/astragalus/astragalusc.png b/Mods/Core/Textures/things/plant/astragalus/astragalusc.png similarity index 100% rename from textures/things/plant/astragalus/astragalusc.png rename to Mods/Core/Textures/things/plant/astragalus/astragalusc.png diff --git a/textures/things/plant/berryplant/BerryPlant.png b/Mods/Core/Textures/things/plant/berryplant/BerryPlant.png similarity index 100% rename from textures/things/plant/berryplant/BerryPlant.png rename to Mods/Core/Textures/things/plant/berryplant/BerryPlant.png diff --git a/textures/things/plant/berryplant/BerryPlantA.png b/Mods/Core/Textures/things/plant/berryplant/BerryPlantA.png similarity index 100% rename from textures/things/plant/berryplant/BerryPlantA.png rename to Mods/Core/Textures/things/plant/berryplant/BerryPlantA.png diff --git a/textures/things/plant/bonsaitree/BonsaiTreeA.png b/Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeA.png similarity index 100% rename from textures/things/plant/bonsaitree/BonsaiTreeA.png rename to Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeA.png diff --git a/textures/things/plant/bonsaitree/BonsaiTreeB.png b/Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeB.png similarity index 100% rename from textures/things/plant/bonsaitree/BonsaiTreeB.png rename to Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeB.png diff --git a/textures/things/plant/bonsaitree/BonsaiTreeC.png b/Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeC.png similarity index 100% rename from textures/things/plant/bonsaitree/BonsaiTreeC.png rename to Mods/Core/Textures/things/plant/bonsaitree/BonsaiTreeC.png diff --git a/textures/things/plant/brambles/BramblesA.png b/Mods/Core/Textures/things/plant/brambles/BramblesA.png similarity index 100% rename from textures/things/plant/brambles/BramblesA.png rename to Mods/Core/Textures/things/plant/brambles/BramblesA.png diff --git a/textures/things/plant/brambles/BramblesB.png b/Mods/Core/Textures/things/plant/brambles/BramblesB.png similarity index 100% rename from textures/things/plant/brambles/BramblesB.png rename to Mods/Core/Textures/things/plant/brambles/BramblesB.png diff --git a/textures/things/plant/burnedtree/burnedtreea.png b/Mods/Core/Textures/things/plant/burnedtree/burnedtreea.png similarity index 100% rename from textures/things/plant/burnedtree/burnedtreea.png rename to Mods/Core/Textures/things/plant/burnedtree/burnedtreea.png diff --git a/textures/things/plant/burnedtree/burnedtreeb.png b/Mods/Core/Textures/things/plant/burnedtree/burnedtreeb.png similarity index 100% rename from textures/things/plant/burnedtree/burnedtreeb.png rename to Mods/Core/Textures/things/plant/burnedtree/burnedtreeb.png diff --git a/textures/things/plant/bush/BushA.png b/Mods/Core/Textures/things/plant/bush/BushA.png similarity index 100% rename from textures/things/plant/bush/BushA.png rename to Mods/Core/Textures/things/plant/bush/BushA.png diff --git a/textures/things/plant/bush/BushB.png b/Mods/Core/Textures/things/plant/bush/BushB.png similarity index 100% rename from textures/things/plant/bush/BushB.png rename to Mods/Core/Textures/things/plant/bush/BushB.png diff --git a/textures/things/plant/bush/BushC.png b/Mods/Core/Textures/things/plant/bush/BushC.png similarity index 100% rename from textures/things/plant/bush/BushC.png rename to Mods/Core/Textures/things/plant/bush/BushC.png diff --git a/textures/things/plant/bush/bush.png b/Mods/Core/Textures/things/plant/bush/bush.png similarity index 100% rename from textures/things/plant/bush/bush.png rename to Mods/Core/Textures/things/plant/bush/bush.png diff --git a/textures/things/plant/bush_leafless/bush_leafless.png b/Mods/Core/Textures/things/plant/bush_leafless/bush_leafless.png similarity index 100% rename from textures/things/plant/bush_leafless/bush_leafless.png rename to Mods/Core/Textures/things/plant/bush_leafless/bush_leafless.png diff --git a/textures/things/plant/chokevine/ChokevineA.png b/Mods/Core/Textures/things/plant/chokevine/ChokevineA.png similarity index 100% rename from textures/things/plant/chokevine/ChokevineA.png rename to Mods/Core/Textures/things/plant/chokevine/ChokevineA.png diff --git a/textures/things/plant/chokevine/ChokevineB.png b/Mods/Core/Textures/things/plant/chokevine/ChokevineB.png similarity index 100% rename from textures/things/plant/chokevine/ChokevineB.png rename to Mods/Core/Textures/things/plant/chokevine/ChokevineB.png diff --git a/textures/things/plant/chokevine/ChokevineC.png b/Mods/Core/Textures/things/plant/chokevine/ChokevineC.png similarity index 100% rename from textures/things/plant/chokevine/ChokevineC.png rename to Mods/Core/Textures/things/plant/chokevine/ChokevineC.png diff --git a/textures/things/plant/chokevine/ChokevineD.png b/Mods/Core/Textures/things/plant/chokevine/ChokevineD.png similarity index 100% rename from textures/things/plant/chokevine/ChokevineD.png rename to Mods/Core/Textures/things/plant/chokevine/ChokevineD.png diff --git a/textures/things/plant/cornimmature/cornplanta.png b/Mods/Core/Textures/things/plant/cornimmature/cornplanta.png similarity index 100% rename from textures/things/plant/cornimmature/cornplanta.png rename to Mods/Core/Textures/things/plant/cornimmature/cornplanta.png diff --git a/textures/things/plant/cornplant/CornPlanA.png b/Mods/Core/Textures/things/plant/cornplant/CornPlanA.png similarity index 100% rename from textures/things/plant/cornplant/CornPlanA.png rename to Mods/Core/Textures/things/plant/cornplant/CornPlanA.png diff --git a/textures/things/plant/cornplant/CornPlantA.png b/Mods/Core/Textures/things/plant/cornplant/CornPlantA.png similarity index 100% rename from textures/things/plant/cornplant/CornPlantA.png rename to Mods/Core/Textures/things/plant/cornplant/CornPlantA.png diff --git a/textures/things/plant/cornplant/CornPlantB.png b/Mods/Core/Textures/things/plant/cornplant/CornPlantB.png similarity index 100% rename from textures/things/plant/cornplant/CornPlantB.png rename to Mods/Core/Textures/things/plant/cornplant/CornPlantB.png diff --git a/textures/things/plant/cottonimmature/cottonplant.png b/Mods/Core/Textures/things/plant/cottonimmature/cottonplant.png similarity index 100% rename from textures/things/plant/cottonimmature/cottonplant.png rename to Mods/Core/Textures/things/plant/cottonimmature/cottonplant.png diff --git a/textures/things/plant/cottonplant/cottonplant.png b/Mods/Core/Textures/things/plant/cottonplant/cottonplant.png similarity index 100% rename from textures/things/plant/cottonplant/cottonplant.png rename to Mods/Core/Textures/things/plant/cottonplant/cottonplant.png diff --git a/textures/things/plant/dandelion/Dandelion.png b/Mods/Core/Textures/things/plant/dandelion/Dandelion.png similarity index 100% rename from textures/things/plant/dandelion/Dandelion.png rename to Mods/Core/Textures/things/plant/dandelion/Dandelion.png diff --git a/textures/things/plant/dandelion/DandelionB.png b/Mods/Core/Textures/things/plant/dandelion/DandelionB.png similarity index 100% rename from textures/things/plant/dandelion/DandelionB.png rename to Mods/Core/Textures/things/plant/dandelion/DandelionB.png diff --git a/textures/things/plant/dandelion/DandelionC.png b/Mods/Core/Textures/things/plant/dandelion/DandelionC.png similarity index 100% rename from textures/things/plant/dandelion/DandelionC.png rename to Mods/Core/Textures/things/plant/dandelion/DandelionC.png diff --git a/textures/things/plant/daylily/DaylilyA.png b/Mods/Core/Textures/things/plant/daylily/DaylilyA.png similarity index 100% rename from textures/things/plant/daylily/DaylilyA.png rename to Mods/Core/Textures/things/plant/daylily/DaylilyA.png diff --git a/textures/things/plant/daylily/DaylilyB.png b/Mods/Core/Textures/things/plant/daylily/DaylilyB.png similarity index 100% rename from textures/things/plant/daylily/DaylilyB.png rename to Mods/Core/Textures/things/plant/daylily/DaylilyB.png diff --git a/textures/things/plant/daylily/daylily.png b/Mods/Core/Textures/things/plant/daylily/daylily.png similarity index 100% rename from textures/things/plant/daylily/daylily.png rename to Mods/Core/Textures/things/plant/daylily/daylily.png diff --git a/textures/things/plant/devilstrand/DevilstrandA.png b/Mods/Core/Textures/things/plant/devilstrand/DevilstrandA.png similarity index 100% rename from textures/things/plant/devilstrand/DevilstrandA.png rename to Mods/Core/Textures/things/plant/devilstrand/DevilstrandA.png diff --git a/textures/things/plant/devilstrand/DevilstrandB.png b/Mods/Core/Textures/things/plant/devilstrand/DevilstrandB.png similarity index 100% rename from textures/things/plant/devilstrand/DevilstrandB.png rename to Mods/Core/Textures/things/plant/devilstrand/DevilstrandB.png diff --git a/textures/things/plant/devilstrand/devilstrand.png b/Mods/Core/Textures/things/plant/devilstrand/devilstrand.png similarity index 100% rename from textures/things/plant/devilstrand/devilstrand.png rename to Mods/Core/Textures/things/plant/devilstrand/devilstrand.png diff --git a/textures/things/plant/fibercorn/FibercornA.png b/Mods/Core/Textures/things/plant/fibercorn/FibercornA.png similarity index 100% rename from textures/things/plant/fibercorn/FibercornA.png rename to Mods/Core/Textures/things/plant/fibercorn/FibercornA.png diff --git a/textures/things/plant/fibercorn/FibercornB.png b/Mods/Core/Textures/things/plant/fibercorn/FibercornB.png similarity index 100% rename from textures/things/plant/fibercorn/FibercornB.png rename to Mods/Core/Textures/things/plant/fibercorn/FibercornB.png diff --git a/textures/things/plant/fibercorn/FibercornC.png b/Mods/Core/Textures/things/plant/fibercorn/FibercornC.png similarity index 100% rename from textures/things/plant/fibercorn/FibercornC.png rename to Mods/Core/Textures/things/plant/fibercorn/FibercornC.png diff --git a/textures/things/plant/gauranlenmoss/GauranlenMossA.png b/Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossA.png similarity index 100% rename from textures/things/plant/gauranlenmoss/GauranlenMossA.png rename to Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossA.png diff --git a/textures/things/plant/gauranlenmoss/GauranlenMossB.png b/Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossB.png similarity index 100% rename from textures/things/plant/gauranlenmoss/GauranlenMossB.png rename to Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossB.png diff --git a/textures/things/plant/gauranlenmoss/GauranlenMossC.png b/Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossC.png similarity index 100% rename from textures/things/plant/gauranlenmoss/GauranlenMossC.png rename to Mods/Core/Textures/things/plant/gauranlenmoss/GauranlenMossC.png diff --git a/textures/things/plant/gauranlenpod/GauranlenPodA.png b/Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodA.png similarity index 100% rename from textures/things/plant/gauranlenpod/GauranlenPodA.png rename to Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodA.png diff --git a/textures/things/plant/gauranlenpod/GauranlenPodB.png b/Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodB.png similarity index 100% rename from textures/things/plant/gauranlenpod/GauranlenPodB.png rename to Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodB.png diff --git a/textures/things/plant/gauranlenpod/GauranlenPodC.png b/Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodC.png similarity index 100% rename from textures/things/plant/gauranlenpod/GauranlenPodC.png rename to Mods/Core/Textures/things/plant/gauranlenpod/GauranlenPodC.png diff --git a/textures/things/plant/gauranlentree/GauranlenTreeA.png b/Mods/Core/Textures/things/plant/gauranlentree/GauranlenTreeA.png similarity index 100% rename from textures/things/plant/gauranlentree/GauranlenTreeA.png rename to Mods/Core/Textures/things/plant/gauranlentree/GauranlenTreeA.png diff --git a/textures/things/plant/gauranlentree/GauranlenTreeB.png b/Mods/Core/Textures/things/plant/gauranlentree/GauranlenTreeB.png similarity index 100% rename from textures/things/plant/gauranlentree/GauranlenTreeB.png rename to Mods/Core/Textures/things/plant/gauranlentree/GauranlenTreeB.png diff --git a/textures/things/plant/glowstool/GlowstoolA.png b/Mods/Core/Textures/things/plant/glowstool/GlowstoolA.png similarity index 100% rename from textures/things/plant/glowstool/GlowstoolA.png rename to Mods/Core/Textures/things/plant/glowstool/GlowstoolA.png diff --git a/textures/things/plant/glowstool/GlowstoolB.png b/Mods/Core/Textures/things/plant/glowstool/GlowstoolB.png similarity index 100% rename from textures/things/plant/glowstool/GlowstoolB.png rename to Mods/Core/Textures/things/plant/glowstool/GlowstoolB.png diff --git a/textures/things/plant/grass/grassa.png b/Mods/Core/Textures/things/plant/grass/grassa.png similarity index 100% rename from textures/things/plant/grass/grassa.png rename to Mods/Core/Textures/things/plant/grass/grassa.png diff --git a/textures/things/plant/grass_leafless/grassa_leafless.png b/Mods/Core/Textures/things/plant/grass_leafless/grassa_leafless.png similarity index 100% rename from textures/things/plant/grass_leafless/grassa_leafless.png rename to Mods/Core/Textures/things/plant/grass_leafless/grassa_leafless.png diff --git a/textures/things/plant/haygrass/HaygrassA.png b/Mods/Core/Textures/things/plant/haygrass/HaygrassA.png similarity index 100% rename from textures/things/plant/haygrass/HaygrassA.png rename to Mods/Core/Textures/things/plant/haygrass/HaygrassA.png diff --git a/textures/things/plant/healroot/HealrootA.png b/Mods/Core/Textures/things/plant/healroot/HealrootA.png similarity index 100% rename from textures/things/plant/healroot/HealrootA.png rename to Mods/Core/Textures/things/plant/healroot/HealrootA.png diff --git a/textures/things/plant/healroot/HealrootB.png b/Mods/Core/Textures/things/plant/healroot/HealrootB.png similarity index 100% rename from textures/things/plant/healroot/HealrootB.png rename to Mods/Core/Textures/things/plant/healroot/HealrootB.png diff --git a/textures/things/plant/healroot/healroot.png b/Mods/Core/Textures/things/plant/healroot/healroot.png similarity index 100% rename from textures/things/plant/healroot/healroot.png rename to Mods/Core/Textures/things/plant/healroot/healroot.png diff --git a/textures/things/plant/hopsplant/hopsplanta.png b/Mods/Core/Textures/things/plant/hopsplant/hopsplanta.png similarity index 100% rename from textures/things/plant/hopsplant/hopsplanta.png rename to Mods/Core/Textures/things/plant/hopsplant/hopsplanta.png diff --git a/textures/things/plant/immature/ambrosia_immature/Ambrosia.png b/Mods/Core/Textures/things/plant/immature/ambrosia_immature/Ambrosia.png similarity index 100% rename from textures/things/plant/immature/ambrosia_immature/Ambrosia.png rename to Mods/Core/Textures/things/plant/immature/ambrosia_immature/Ambrosia.png diff --git a/textures/things/plant/immature/berryplant_immature/BerryPlant.png b/Mods/Core/Textures/things/plant/immature/berryplant_immature/BerryPlant.png similarity index 100% rename from textures/things/plant/immature/berryplant_immature/BerryPlant.png rename to Mods/Core/Textures/things/plant/immature/berryplant_immature/BerryPlant.png diff --git a/textures/things/plant/immature/berryplant_immature/BerryPlantA.png b/Mods/Core/Textures/things/plant/immature/berryplant_immature/BerryPlantA.png similarity index 100% rename from textures/things/plant/immature/berryplant_immature/BerryPlantA.png rename to Mods/Core/Textures/things/plant/immature/berryplant_immature/BerryPlantA.png diff --git a/textures/things/plant/immature/cornplant_immature/CornPlantA.png b/Mods/Core/Textures/things/plant/immature/cornplant_immature/CornPlantA.png similarity index 100% rename from textures/things/plant/immature/cornplant_immature/CornPlantA.png rename to Mods/Core/Textures/things/plant/immature/cornplant_immature/CornPlantA.png diff --git a/textures/things/plant/immature/riceplant_immature/RicePlantA.png b/Mods/Core/Textures/things/plant/immature/riceplant_immature/RicePlantA.png similarity index 100% rename from textures/things/plant/immature/riceplant_immature/RicePlantA.png rename to Mods/Core/Textures/things/plant/immature/riceplant_immature/RicePlantA.png diff --git a/textures/things/plant/immature/toxipotato_immature/ToxipotatoA.png b/Mods/Core/Textures/things/plant/immature/toxipotato_immature/ToxipotatoA.png similarity index 100% rename from textures/things/plant/immature/toxipotato_immature/ToxipotatoA.png rename to Mods/Core/Textures/things/plant/immature/toxipotato_immature/ToxipotatoA.png diff --git a/textures/things/plant/immature/treecocoa_immature/TreeCocoaA.png b/Mods/Core/Textures/things/plant/immature/treecocoa_immature/TreeCocoaA.png similarity index 100% rename from textures/things/plant/immature/treecocoa_immature/TreeCocoaA.png rename to Mods/Core/Textures/things/plant/immature/treecocoa_immature/TreeCocoaA.png diff --git a/textures/things/plant/leafless/agave_leafless/AgaveA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/agave_leafless/AgaveA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/agave_leafless/AgaveA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/agave_leafless/AgaveA_Leafless.png diff --git a/textures/things/plant/leafless/agave_leafless/AgaveB_Leafless.png b/Mods/Core/Textures/things/plant/leafless/agave_leafless/AgaveB_Leafless.png similarity index 100% rename from textures/things/plant/leafless/agave_leafless/AgaveB_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/agave_leafless/AgaveB_Leafless.png diff --git a/textures/things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless.png b/Mods/Core/Textures/things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless.png similarity index 100% rename from textures/things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless.png diff --git a/textures/things/plant/leafless/berryplant_leafless/BerryBushLeaflessA.png b/Mods/Core/Textures/things/plant/leafless/berryplant_leafless/BerryBushLeaflessA.png similarity index 100% rename from textures/things/plant/leafless/berryplant_leafless/BerryBushLeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/berryplant_leafless/BerryBushLeaflessA.png diff --git a/textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessA.png b/Mods/Core/Textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessA.png similarity index 100% rename from textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessA.png diff --git a/textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessB.png b/Mods/Core/Textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessB.png similarity index 100% rename from textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessB.png rename to Mods/Core/Textures/things/plant/leafless/brambles_leafless/Brambles_LeaflessB.png diff --git a/textures/things/plant/leafless/bush_leafless/Bush_LeaflessA.png b/Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessA.png similarity index 100% rename from textures/things/plant/leafless/bush_leafless/Bush_LeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessA.png diff --git a/textures/things/plant/leafless/bush_leafless/Bush_LeaflessB.png b/Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessB.png similarity index 100% rename from textures/things/plant/leafless/bush_leafless/Bush_LeaflessB.png rename to Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessB.png diff --git a/textures/things/plant/leafless/bush_leafless/Bush_LeaflessC.png b/Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessC.png similarity index 100% rename from textures/things/plant/leafless/bush_leafless/Bush_LeaflessC.png rename to Mods/Core/Textures/things/plant/leafless/bush_leafless/Bush_LeaflessC.png diff --git a/textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA.png b/Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA.png similarity index 100% rename from textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA.png diff --git a/textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB.png b/Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB.png similarity index 100% rename from textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB.png rename to Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB.png diff --git a/textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC.png b/Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC.png similarity index 100% rename from textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC.png rename to Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC.png diff --git a/textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD.png b/Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD.png similarity index 100% rename from textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD.png rename to Mods/Core/Textures/things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD.png diff --git a/textures/things/plant/leafless/moss_leafless/Moss_LeaflessA.png b/Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessA.png similarity index 100% rename from textures/things/plant/leafless/moss_leafless/Moss_LeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessA.png diff --git a/textures/things/plant/leafless/moss_leafless/Moss_LeaflessB.png b/Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessB.png similarity index 100% rename from textures/things/plant/leafless/moss_leafless/Moss_LeaflessB.png rename to Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessB.png diff --git a/textures/things/plant/leafless/moss_leafless/Moss_LeaflessC.png b/Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessC.png similarity index 100% rename from textures/things/plant/leafless/moss_leafless/Moss_LeaflessC.png rename to Mods/Core/Textures/things/plant/leafless/moss_leafless/Moss_LeaflessC.png diff --git a/textures/things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless.png diff --git a/textures/things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA.png b/Mods/Core/Textures/things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA.png similarity index 100% rename from textures/things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA.png rename to Mods/Core/Textures/things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA.png diff --git a/textures/things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless.png diff --git a/textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless.png diff --git a/textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless.png b/Mods/Core/Textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless.png similarity index 100% rename from textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless.png diff --git a/textures/things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless.png diff --git a/textures/things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless.png diff --git a/textures/things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless.png diff --git a/textures/things/plant/leafless/treeoak_leafless/TreeOakA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treeoak_leafless/TreeOakA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treeoak_leafless/TreeOakA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treeoak_leafless/TreeOakA_Leafless.png diff --git a/textures/things/plant/leafless/treeoak_leafless/TreeOakB_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treeoak_leafless/TreeOakB_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treeoak_leafless/TreeOakB_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treeoak_leafless/TreeOakB_Leafless.png diff --git a/textures/things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless.png b/Mods/Core/Textures/things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless.png similarity index 100% rename from textures/things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless.png rename to Mods/Core/Textures/things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless.png diff --git a/textures/things/plant/moss/MossA.png b/Mods/Core/Textures/things/plant/moss/MossA.png similarity index 100% rename from textures/things/plant/moss/MossA.png rename to Mods/Core/Textures/things/plant/moss/MossA.png diff --git a/textures/things/plant/moss/MossB.png b/Mods/Core/Textures/things/plant/moss/MossB.png similarity index 100% rename from textures/things/plant/moss/MossB.png rename to Mods/Core/Textures/things/plant/moss/MossB.png diff --git a/textures/things/plant/moss/MossC.png b/Mods/Core/Textures/things/plant/moss/MossC.png similarity index 100% rename from textures/things/plant/moss/MossC.png rename to Mods/Core/Textures/things/plant/moss/MossC.png diff --git a/textures/things/plant/moss_leafless/moss_leaflessa.png b/Mods/Core/Textures/things/plant/moss_leafless/moss_leaflessa.png similarity index 100% rename from textures/things/plant/moss_leafless/moss_leaflessa.png rename to Mods/Core/Textures/things/plant/moss_leafless/moss_leaflessa.png diff --git a/textures/things/plant/moss_leafless/moss_leaflessb.png b/Mods/Core/Textures/things/plant/moss_leafless/moss_leaflessb.png similarity index 100% rename from textures/things/plant/moss_leafless/moss_leaflessb.png rename to Mods/Core/Textures/things/plant/moss_leafless/moss_leaflessb.png diff --git a/textures/things/plant/nutrifungus/NutrifungusA.png b/Mods/Core/Textures/things/plant/nutrifungus/NutrifungusA.png similarity index 100% rename from textures/things/plant/nutrifungus/NutrifungusA.png rename to Mods/Core/Textures/things/plant/nutrifungus/NutrifungusA.png diff --git a/textures/things/plant/nutrifungus/NutrifungusB.png b/Mods/Core/Textures/things/plant/nutrifungus/NutrifungusB.png similarity index 100% rename from textures/things/plant/nutrifungus/NutrifungusB.png rename to Mods/Core/Textures/things/plant/nutrifungus/NutrifungusB.png diff --git a/textures/things/plant/nutrifungus/NutrifungusC.png b/Mods/Core/Textures/things/plant/nutrifungus/NutrifungusC.png similarity index 100% rename from textures/things/plant/nutrifungus/NutrifungusC.png rename to Mods/Core/Textures/things/plant/nutrifungus/NutrifungusC.png diff --git a/textures/things/plant/pebblecactus/PebbleCactusA.png b/Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusA.png similarity index 100% rename from textures/things/plant/pebblecactus/PebbleCactusA.png rename to Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusA.png diff --git a/textures/things/plant/pebblecactus/PebbleCactusB.png b/Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusB.png similarity index 100% rename from textures/things/plant/pebblecactus/PebbleCactusB.png rename to Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusB.png diff --git a/textures/things/plant/pebblecactus/PebbleCactusC.png b/Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusC.png similarity index 100% rename from textures/things/plant/pebblecactus/PebbleCactusC.png rename to Mods/Core/Textures/things/plant/pebblecactus/PebbleCactusC.png diff --git a/textures/things/plant/pincushioncactus/PincushionCactus.png b/Mods/Core/Textures/things/plant/pincushioncactus/PincushionCactus.png similarity index 100% rename from textures/things/plant/pincushioncactus/PincushionCactus.png rename to Mods/Core/Textures/things/plant/pincushioncactus/PincushionCactus.png diff --git a/textures/things/plant/pincushioncactus/PincushionCactusA.png b/Mods/Core/Textures/things/plant/pincushioncactus/PincushionCactusA.png similarity index 100% rename from textures/things/plant/pincushioncactus/PincushionCactusA.png rename to Mods/Core/Textures/things/plant/pincushioncactus/PincushionCactusA.png diff --git a/textures/things/plant/plant_sowing.png b/Mods/Core/Textures/things/plant/plant_sowing.png similarity index 100% rename from textures/things/plant/plant_sowing.png rename to Mods/Core/Textures/things/plant/plant_sowing.png diff --git a/textures/things/plant/potatoplant/PotatoPlant.png b/Mods/Core/Textures/things/plant/potatoplant/PotatoPlant.png similarity index 100% rename from textures/things/plant/potatoplant/PotatoPlant.png rename to Mods/Core/Textures/things/plant/potatoplant/PotatoPlant.png diff --git a/textures/things/plant/psychoidplant/psychoidplanta.png b/Mods/Core/Textures/things/plant/psychoidplant/psychoidplanta.png similarity index 100% rename from textures/things/plant/psychoidplant/psychoidplanta.png rename to Mods/Core/Textures/things/plant/psychoidplant/psychoidplanta.png diff --git a/textures/things/plant/raspberryimmature/raspberrybusha.png b/Mods/Core/Textures/things/plant/raspberryimmature/raspberrybusha.png similarity index 100% rename from textures/things/plant/raspberryimmature/raspberrybusha.png rename to Mods/Core/Textures/things/plant/raspberryimmature/raspberrybusha.png diff --git a/textures/things/plant/raspberryplant/raspberrybusha.png b/Mods/Core/Textures/things/plant/raspberryplant/raspberrybusha.png similarity index 100% rename from textures/things/plant/raspberryplant/raspberrybusha.png rename to Mods/Core/Textures/things/plant/raspberryplant/raspberrybusha.png diff --git a/textures/things/plant/ratpalm/RatPalmA.png b/Mods/Core/Textures/things/plant/ratpalm/RatPalmA.png similarity index 100% rename from textures/things/plant/ratpalm/RatPalmA.png rename to Mods/Core/Textures/things/plant/ratpalm/RatPalmA.png diff --git a/textures/things/plant/ratpalm/RatPalmB.png b/Mods/Core/Textures/things/plant/ratpalm/RatPalmB.png similarity index 100% rename from textures/things/plant/ratpalm/RatPalmB.png rename to Mods/Core/Textures/things/plant/ratpalm/RatPalmB.png diff --git a/textures/things/plant/ratpalm/RatPalmC.png b/Mods/Core/Textures/things/plant/ratpalm/RatPalmC.png similarity index 100% rename from textures/things/plant/ratpalm/RatPalmC.png rename to Mods/Core/Textures/things/plant/ratpalm/RatPalmC.png diff --git a/textures/things/plant/riceplant/RicePlantA.png b/Mods/Core/Textures/things/plant/riceplant/RicePlantA.png similarity index 100% rename from textures/things/plant/riceplant/RicePlantA.png rename to Mods/Core/Textures/things/plant/riceplant/RicePlantA.png diff --git a/textures/things/plant/ripthorn/RipthornA.png b/Mods/Core/Textures/things/plant/ripthorn/RipthornA.png similarity index 100% rename from textures/things/plant/ripthorn/RipthornA.png rename to Mods/Core/Textures/things/plant/ripthorn/RipthornA.png diff --git a/textures/things/plant/ripthorn/RipthornB.png b/Mods/Core/Textures/things/plant/ripthorn/RipthornB.png similarity index 100% rename from textures/things/plant/ripthorn/RipthornB.png rename to Mods/Core/Textures/things/plant/ripthorn/RipthornB.png diff --git a/textures/things/plant/ripthorn/RipthornC.png b/Mods/Core/Textures/things/plant/ripthorn/RipthornC.png similarity index 100% rename from textures/things/plant/ripthorn/RipthornC.png rename to Mods/Core/Textures/things/plant/ripthorn/RipthornC.png diff --git a/textures/things/plant/rose/RoseA.png b/Mods/Core/Textures/things/plant/rose/RoseA.png similarity index 100% rename from textures/things/plant/rose/RoseA.png rename to Mods/Core/Textures/things/plant/rose/RoseA.png diff --git a/textures/things/plant/saguarocactus/SaguaroCactus.png b/Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactus.png similarity index 100% rename from textures/things/plant/saguarocactus/SaguaroCactus.png rename to Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactus.png diff --git a/textures/things/plant/saguarocactus/SaguaroCactusA.png b/Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactusA.png similarity index 100% rename from textures/things/plant/saguarocactus/SaguaroCactusA.png rename to Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactusA.png diff --git a/textures/things/plant/saguarocactus/SaguaroCactusB.png b/Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactusB.png similarity index 100% rename from textures/things/plant/saguarocactus/SaguaroCactusB.png rename to Mods/Core/Textures/things/plant/saguarocactus/SaguaroCactusB.png diff --git a/textures/things/plant/saguarocactus_leafless/saguarocactus_leafless.png b/Mods/Core/Textures/things/plant/saguarocactus_leafless/saguarocactus_leafless.png similarity index 100% rename from textures/things/plant/saguarocactus_leafless/saguarocactus_leafless.png rename to Mods/Core/Textures/things/plant/saguarocactus_leafless/saguarocactus_leafless.png diff --git a/textures/things/plant/seed_default.png b/Mods/Core/Textures/things/plant/seed_default.png similarity index 100% rename from textures/things/plant/seed_default.png rename to Mods/Core/Textures/things/plant/seed_default.png diff --git a/textures/things/plant/smokeleafplant/smokeleafplanta.png b/Mods/Core/Textures/things/plant/smokeleafplant/smokeleafplanta.png similarity index 100% rename from textures/things/plant/smokeleafplant/smokeleafplanta.png rename to Mods/Core/Textures/things/plant/smokeleafplant/smokeleafplanta.png diff --git a/textures/things/plant/strawberryimmature/strawberryplant.png b/Mods/Core/Textures/things/plant/strawberryimmature/strawberryplant.png similarity index 100% rename from textures/things/plant/strawberryimmature/strawberryplant.png rename to Mods/Core/Textures/things/plant/strawberryimmature/strawberryplant.png diff --git a/textures/things/plant/strawberryplant/StrawberryPlant.png b/Mods/Core/Textures/things/plant/strawberryplant/StrawberryPlant.png similarity index 100% rename from textures/things/plant/strawberryplant/StrawberryPlant.png rename to Mods/Core/Textures/things/plant/strawberryplant/StrawberryPlant.png diff --git a/textures/things/plant/strawberryplant/StrawberryPlant_Grown.png b/Mods/Core/Textures/things/plant/strawberryplant/StrawberryPlant_Grown.png similarity index 100% rename from textures/things/plant/strawberryplant/StrawberryPlant_Grown.png rename to Mods/Core/Textures/things/plant/strawberryplant/StrawberryPlant_Grown.png diff --git a/textures/things/plant/timbershroom/TimbershroomA.png b/Mods/Core/Textures/things/plant/timbershroom/TimbershroomA.png similarity index 100% rename from textures/things/plant/timbershroom/TimbershroomA.png rename to Mods/Core/Textures/things/plant/timbershroom/TimbershroomA.png diff --git a/textures/things/plant/timbershroom/TimbershroomB.png b/Mods/Core/Textures/things/plant/timbershroom/TimbershroomB.png similarity index 100% rename from textures/things/plant/timbershroom/TimbershroomB.png rename to Mods/Core/Textures/things/plant/timbershroom/TimbershroomB.png diff --git a/textures/things/plant/timbershroom/TimbershroomC.png b/Mods/Core/Textures/things/plant/timbershroom/TimbershroomC.png similarity index 100% rename from textures/things/plant/timbershroom/TimbershroomC.png rename to Mods/Core/Textures/things/plant/timbershroom/TimbershroomC.png diff --git a/textures/things/plant/tinctoria/TinctoriaA.png b/Mods/Core/Textures/things/plant/tinctoria/TinctoriaA.png similarity index 100% rename from textures/things/plant/tinctoria/TinctoriaA.png rename to Mods/Core/Textures/things/plant/tinctoria/TinctoriaA.png diff --git a/textures/things/plant/tinctoria/TinctoriaB.png b/Mods/Core/Textures/things/plant/tinctoria/TinctoriaB.png similarity index 100% rename from textures/things/plant/tinctoria/TinctoriaB.png rename to Mods/Core/Textures/things/plant/tinctoria/TinctoriaB.png diff --git a/textures/things/plant/tinctoria/TinctoriaC.png b/Mods/Core/Textures/things/plant/tinctoria/TinctoriaC.png similarity index 100% rename from textures/things/plant/tinctoria/TinctoriaC.png rename to Mods/Core/Textures/things/plant/tinctoria/TinctoriaC.png diff --git a/textures/things/plant/tinctoria/TinctoriaD.png b/Mods/Core/Textures/things/plant/tinctoria/TinctoriaD.png similarity index 100% rename from textures/things/plant/tinctoria/TinctoriaD.png rename to Mods/Core/Textures/things/plant/tinctoria/TinctoriaD.png diff --git a/textures/things/plant/toxipotato/ToxipotatoA.png b/Mods/Core/Textures/things/plant/toxipotato/ToxipotatoA.png similarity index 100% rename from textures/things/plant/toxipotato/ToxipotatoA.png rename to Mods/Core/Textures/things/plant/toxipotato/ToxipotatoA.png diff --git a/textures/things/plant/toxipotato/ToxipotatoB.png b/Mods/Core/Textures/things/plant/toxipotato/ToxipotatoB.png similarity index 100% rename from textures/things/plant/toxipotato/ToxipotatoB.png rename to Mods/Core/Textures/things/plant/toxipotato/ToxipotatoB.png diff --git a/textures/things/plant/toxipotato/ToxipotatoC.png b/Mods/Core/Textures/things/plant/toxipotato/ToxipotatoC.png similarity index 100% rename from textures/things/plant/toxipotato/ToxipotatoC.png rename to Mods/Core/Textures/things/plant/toxipotato/ToxipotatoC.png diff --git a/textures/things/plant/treeanima/TreeAnimaA.png b/Mods/Core/Textures/things/plant/treeanima/TreeAnimaA.png similarity index 100% rename from textures/things/plant/treeanima/TreeAnimaA.png rename to Mods/Core/Textures/things/plant/treeanima/TreeAnimaA.png diff --git a/textures/things/plant/treeanima/TreeAnimaB.png b/Mods/Core/Textures/things/plant/treeanima/TreeAnimaB.png similarity index 100% rename from textures/things/plant/treeanima/TreeAnimaB.png rename to Mods/Core/Textures/things/plant/treeanima/TreeAnimaB.png diff --git a/textures/things/plant/treeanima/TreeAnimaC.png b/Mods/Core/Textures/things/plant/treeanima/TreeAnimaC.png similarity index 100% rename from textures/things/plant/treeanima/TreeAnimaC.png rename to Mods/Core/Textures/things/plant/treeanima/TreeAnimaC.png diff --git a/textures/things/plant/treeanima/TreeAnimaD.png b/Mods/Core/Textures/things/plant/treeanima/TreeAnimaD.png similarity index 100% rename from textures/things/plant/treeanima/TreeAnimaD.png rename to Mods/Core/Textures/things/plant/treeanima/TreeAnimaD.png diff --git a/textures/things/plant/treeanima/TreeAnimaE.png b/Mods/Core/Textures/things/plant/treeanima/TreeAnimaE.png similarity index 100% rename from textures/things/plant/treeanima/TreeAnimaE.png rename to Mods/Core/Textures/things/plant/treeanima/TreeAnimaE.png diff --git a/textures/things/plant/treebamboo/TreeBambooA.png b/Mods/Core/Textures/things/plant/treebamboo/TreeBambooA.png similarity index 100% rename from textures/things/plant/treebamboo/TreeBambooA.png rename to Mods/Core/Textures/things/plant/treebamboo/TreeBambooA.png diff --git a/textures/things/plant/treebirch/TreeBirchA.png b/Mods/Core/Textures/things/plant/treebirch/TreeBirchA.png similarity index 100% rename from textures/things/plant/treebirch/TreeBirchA.png rename to Mods/Core/Textures/things/plant/treebirch/TreeBirchA.png diff --git a/textures/things/plant/treebirch_leafless/treebircha_leafless.png b/Mods/Core/Textures/things/plant/treebirch_leafless/treebircha_leafless.png similarity index 100% rename from textures/things/plant/treebirch_leafless/treebircha_leafless.png rename to Mods/Core/Textures/things/plant/treebirch_leafless/treebircha_leafless.png diff --git a/textures/things/plant/treececropia/TreeCecropiaA.png b/Mods/Core/Textures/things/plant/treececropia/TreeCecropiaA.png similarity index 100% rename from textures/things/plant/treececropia/TreeCecropiaA.png rename to Mods/Core/Textures/things/plant/treececropia/TreeCecropiaA.png diff --git a/textures/things/plant/treecocoa/TreeCocoaA.png b/Mods/Core/Textures/things/plant/treecocoa/TreeCocoaA.png similarity index 100% rename from textures/things/plant/treecocoa/TreeCocoaA.png rename to Mods/Core/Textures/things/plant/treecocoa/TreeCocoaA.png diff --git a/textures/things/plant/treecypress/TreeCypressA.png b/Mods/Core/Textures/things/plant/treecypress/TreeCypressA.png similarity index 100% rename from textures/things/plant/treecypress/TreeCypressA.png rename to Mods/Core/Textures/things/plant/treecypress/TreeCypressA.png diff --git a/textures/things/plant/treecypress/TreeCypressB.png b/Mods/Core/Textures/things/plant/treecypress/TreeCypressB.png similarity index 100% rename from textures/things/plant/treecypress/TreeCypressB.png rename to Mods/Core/Textures/things/plant/treecypress/TreeCypressB.png diff --git a/textures/things/plant/treedrago/TreeDragoA.png b/Mods/Core/Textures/things/plant/treedrago/TreeDragoA.png similarity index 100% rename from textures/things/plant/treedrago/TreeDragoA.png rename to Mods/Core/Textures/things/plant/treedrago/TreeDragoA.png diff --git a/textures/things/plant/treegraypine/TreeGrayPineA.png b/Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineA.png similarity index 100% rename from textures/things/plant/treegraypine/TreeGrayPineA.png rename to Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineA.png diff --git a/textures/things/plant/treegraypine/TreeGrayPineB.png b/Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineB.png similarity index 100% rename from textures/things/plant/treegraypine/TreeGrayPineB.png rename to Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineB.png diff --git a/textures/things/plant/treegraypine/TreeGrayPineC.png b/Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineC.png similarity index 100% rename from textures/things/plant/treegraypine/TreeGrayPineC.png rename to Mods/Core/Textures/things/plant/treegraypine/TreeGrayPineC.png diff --git a/textures/things/plant/treemaple/TreeMapleA.png b/Mods/Core/Textures/things/plant/treemaple/TreeMapleA.png similarity index 100% rename from textures/things/plant/treemaple/TreeMapleA.png rename to Mods/Core/Textures/things/plant/treemaple/TreeMapleA.png diff --git a/textures/things/plant/treemaple/TreeMapleB.png b/Mods/Core/Textures/things/plant/treemaple/TreeMapleB.png similarity index 100% rename from textures/things/plant/treemaple/TreeMapleB.png rename to Mods/Core/Textures/things/plant/treemaple/TreeMapleB.png diff --git a/textures/things/plant/treeoak/TreeOakA.png b/Mods/Core/Textures/things/plant/treeoak/TreeOakA.png similarity index 100% rename from textures/things/plant/treeoak/TreeOakA.png rename to Mods/Core/Textures/things/plant/treeoak/TreeOakA.png diff --git a/textures/things/plant/treeoak/TreeOakB.png b/Mods/Core/Textures/things/plant/treeoak/TreeOakB.png similarity index 100% rename from textures/things/plant/treeoak/TreeOakB.png rename to Mods/Core/Textures/things/plant/treeoak/TreeOakB.png diff --git a/textures/things/plant/treeoak_leafless/treeoak_leaflessa.png b/Mods/Core/Textures/things/plant/treeoak_leafless/treeoak_leaflessa.png similarity index 100% rename from textures/things/plant/treeoak_leafless/treeoak_leaflessa.png rename to Mods/Core/Textures/things/plant/treeoak_leafless/treeoak_leaflessa.png diff --git a/textures/things/plant/treeoak_leafless/treeoak_leaflessb.png b/Mods/Core/Textures/things/plant/treeoak_leafless/treeoak_leaflessb.png similarity index 100% rename from textures/things/plant/treeoak_leafless/treeoak_leaflessb.png rename to Mods/Core/Textures/things/plant/treeoak_leafless/treeoak_leaflessb.png diff --git a/textures/things/plant/treepalm/TreePalmA.png b/Mods/Core/Textures/things/plant/treepalm/TreePalmA.png similarity index 100% rename from textures/things/plant/treepalm/TreePalmA.png rename to Mods/Core/Textures/things/plant/treepalm/TreePalmA.png diff --git a/textures/things/plant/treepine/TreePineA.png b/Mods/Core/Textures/things/plant/treepine/TreePineA.png similarity index 100% rename from textures/things/plant/treepine/TreePineA.png rename to Mods/Core/Textures/things/plant/treepine/TreePineA.png diff --git a/textures/things/plant/treepolux/PoluxTreeA.png b/Mods/Core/Textures/things/plant/treepolux/PoluxTreeA.png similarity index 100% rename from textures/things/plant/treepolux/PoluxTreeA.png rename to Mods/Core/Textures/things/plant/treepolux/PoluxTreeA.png diff --git a/textures/things/plant/treepolux/PoluxTreeB.png b/Mods/Core/Textures/things/plant/treepolux/PoluxTreeB.png similarity index 100% rename from textures/things/plant/treepolux/PoluxTreeB.png rename to Mods/Core/Textures/things/plant/treepolux/PoluxTreeB.png diff --git a/textures/things/plant/treepolux/PoluxTreeC.png b/Mods/Core/Textures/things/plant/treepolux/PoluxTreeC.png similarity index 100% rename from textures/things/plant/treepolux/PoluxTreeC.png rename to Mods/Core/Textures/things/plant/treepolux/PoluxTreeC.png diff --git a/textures/things/plant/treepoplar/TreePoplarA.png b/Mods/Core/Textures/things/plant/treepoplar/TreePoplarA.png similarity index 100% rename from textures/things/plant/treepoplar/TreePoplarA.png rename to Mods/Core/Textures/things/plant/treepoplar/TreePoplarA.png diff --git a/textures/things/plant/treepoplar_leafless/treepoplar_leaflessa.png b/Mods/Core/Textures/things/plant/treepoplar_leafless/treepoplar_leaflessa.png similarity index 100% rename from textures/things/plant/treepoplar_leafless/treepoplar_leaflessa.png rename to Mods/Core/Textures/things/plant/treepoplar_leafless/treepoplar_leaflessa.png diff --git a/textures/things/plant/treeteak/TreeTeakA.png b/Mods/Core/Textures/things/plant/treeteak/TreeTeakA.png similarity index 100% rename from textures/things/plant/treeteak/TreeTeakA.png rename to Mods/Core/Textures/things/plant/treeteak/TreeTeakA.png diff --git a/textures/things/plant/treeteak/TreeTeakB.png b/Mods/Core/Textures/things/plant/treeteak/TreeTeakB.png similarity index 100% rename from textures/things/plant/treeteak/TreeTeakB.png rename to Mods/Core/Textures/things/plant/treeteak/TreeTeakB.png diff --git a/textures/things/plant/witchwood/WitchwoodA.png b/Mods/Core/Textures/things/plant/witchwood/WitchwoodA.png similarity index 100% rename from textures/things/plant/witchwood/WitchwoodA.png rename to Mods/Core/Textures/things/plant/witchwood/WitchwoodA.png diff --git a/textures/things/plant/witchwood/WitchwoodB.png b/Mods/Core/Textures/things/plant/witchwood/WitchwoodB.png similarity index 100% rename from textures/things/plant/witchwood/WitchwoodB.png rename to Mods/Core/Textures/things/plant/witchwood/WitchwoodB.png diff --git a/textures/things/plant/witchwood/WitchwoodC.png b/Mods/Core/Textures/things/plant/witchwood/WitchwoodC.png similarity index 100% rename from textures/things/plant/witchwood/WitchwoodC.png rename to Mods/Core/Textures/things/plant/witchwood/WitchwoodC.png diff --git a/textures/things/projectile/arrow_small.png b/Mods/Core/Textures/things/projectile/arrow_small.png similarity index 100% rename from textures/things/projectile/arrow_small.png rename to Mods/Core/Textures/things/projectile/arrow_small.png diff --git a/textures/things/projectile/bullet_big.png b/Mods/Core/Textures/things/projectile/bullet_big.png similarity index 100% rename from textures/things/projectile/bullet_big.png rename to Mods/Core/Textures/things/projectile/bullet_big.png diff --git a/textures/things/projectile/bullet_shotgun.png b/Mods/Core/Textures/things/projectile/bullet_shotgun.png similarity index 100% rename from textures/things/projectile/bullet_shotgun.png rename to Mods/Core/Textures/things/projectile/bullet_shotgun.png diff --git a/textures/things/projectile/bullet_small.png b/Mods/Core/Textures/things/projectile/bullet_small.png similarity index 100% rename from textures/things/projectile/bullet_small.png rename to Mods/Core/Textures/things/projectile/bullet_small.png diff --git a/textures/things/projectile/charge_small.png b/Mods/Core/Textures/things/projectile/charge_small.png similarity index 100% rename from textures/things/projectile/charge_small.png rename to Mods/Core/Textures/things/projectile/charge_small.png diff --git a/textures/things/projectile/chargelanceshot.png b/Mods/Core/Textures/things/projectile/chargelanceshot.png similarity index 100% rename from textures/things/projectile/chargelanceshot.png rename to Mods/Core/Textures/things/projectile/chargelanceshot.png diff --git a/textures/things/projectile/grenade.png b/Mods/Core/Textures/things/projectile/grenade.png similarity index 100% rename from textures/things/projectile/grenade.png rename to Mods/Core/Textures/things/projectile/grenade.png diff --git a/textures/things/projectile/grenadeemp.png b/Mods/Core/Textures/things/projectile/grenadeemp.png similarity index 100% rename from textures/things/projectile/grenadeemp.png rename to Mods/Core/Textures/things/projectile/grenadeemp.png diff --git a/textures/things/projectile/infernocannonshot.png b/Mods/Core/Textures/things/projectile/infernocannonshot.png similarity index 100% rename from textures/things/projectile/infernocannonshot.png rename to Mods/Core/Textures/things/projectile/infernocannonshot.png diff --git a/textures/things/projectile/molotov.png b/Mods/Core/Textures/things/projectile/molotov.png similarity index 100% rename from textures/things/projectile/molotov.png rename to Mods/Core/Textures/things/projectile/molotov.png diff --git a/textures/things/projectile/pilum.png b/Mods/Core/Textures/things/projectile/pilum.png similarity index 100% rename from textures/things/projectile/pilum.png rename to Mods/Core/Textures/things/projectile/pilum.png diff --git a/textures/things/projectile/rocket_big.png b/Mods/Core/Textures/things/projectile/rocket_big.png similarity index 100% rename from textures/things/projectile/rocket_big.png rename to Mods/Core/Textures/things/projectile/rocket_big.png diff --git a/textures/things/projectile/shellbomb.png b/Mods/Core/Textures/things/projectile/shellbomb.png similarity index 100% rename from textures/things/projectile/shellbomb.png rename to Mods/Core/Textures/things/projectile/shellbomb.png diff --git a/textures/things/projectile/shellemp.png b/Mods/Core/Textures/things/projectile/shellemp.png similarity index 100% rename from textures/things/projectile/shellemp.png rename to Mods/Core/Textures/things/projectile/shellemp.png diff --git a/textures/things/projectile/shellincendiary.png b/Mods/Core/Textures/things/projectile/shellincendiary.png similarity index 100% rename from textures/things/projectile/shellincendiary.png rename to Mods/Core/Textures/things/projectile/shellincendiary.png diff --git a/textures/things/projectile/spark.png b/Mods/Core/Textures/things/projectile/spark.png similarity index 100% rename from textures/things/projectile/spark.png rename to Mods/Core/Textures/things/projectile/spark.png diff --git a/textures/things/projectile/stone.png b/Mods/Core/Textures/things/projectile/stone.png similarity index 100% rename from textures/things/projectile/stone.png rename to Mods/Core/Textures/things/projectile/stone.png diff --git a/textures/things/projectile/watersplash.png b/Mods/Core/Textures/things/projectile/watersplash.png similarity index 100% rename from textures/things/projectile/watersplash.png rename to Mods/Core/Textures/things/projectile/watersplash.png diff --git a/textures/things/special/burningwicka.png b/Mods/Core/Textures/things/special/burningwicka.png similarity index 100% rename from textures/things/special/burningwicka.png rename to Mods/Core/Textures/things/special/burningwicka.png diff --git a/textures/things/special/burningwickb.png b/Mods/Core/Textures/things/special/burningwickb.png similarity index 100% rename from textures/things/special/burningwickb.png rename to Mods/Core/Textures/things/special/burningwickb.png diff --git a/textures/things/special/droppod.png b/Mods/Core/Textures/things/special/droppod.png similarity index 100% rename from textures/things/special/droppod.png rename to Mods/Core/Textures/things/special/droppod.png diff --git a/textures/things/special/droppodshadow.png b/Mods/Core/Textures/things/special/droppodshadow.png similarity index 100% rename from textures/things/special/droppodshadow.png rename to Mods/Core/Textures/things/special/droppodshadow.png diff --git a/textures/things/special/fire/firea.png b/Mods/Core/Textures/things/special/fire/firea.png similarity index 100% rename from textures/things/special/fire/firea.png rename to Mods/Core/Textures/things/special/fire/firea.png diff --git a/textures/things/special/fire/fireb.png b/Mods/Core/Textures/things/special/fire/fireb.png similarity index 100% rename from textures/things/special/fire/fireb.png rename to Mods/Core/Textures/things/special/fire/fireb.png diff --git a/textures/things/special/fire/firec.png b/Mods/Core/Textures/things/special/fire/firec.png similarity index 100% rename from textures/things/special/fire/firec.png rename to Mods/Core/Textures/things/special/fire/firec.png diff --git a/textures/things/special/forbiddenoverlay.png b/Mods/Core/Textures/things/special/forbiddenoverlay.png similarity index 100% rename from textures/things/special/forbiddenoverlay.png rename to Mods/Core/Textures/things/special/forbiddenoverlay.png diff --git a/textures/things/special/power/overlaybase.png b/Mods/Core/Textures/things/special/power/overlaybase.png similarity index 100% rename from textures/things/special/power/overlaybase.png rename to Mods/Core/Textures/things/special/power/overlaybase.png diff --git a/textures/things/special/power/overlaybaseanticipated.png b/Mods/Core/Textures/things/special/power/overlaybaseanticipated.png similarity index 100% rename from textures/things/special/power/overlaybaseanticipated.png rename to Mods/Core/Textures/things/special/power/overlaybaseanticipated.png diff --git a/textures/things/special/power/overlaywire.png b/Mods/Core/Textures/things/special/power/overlaywire.png similarity index 100% rename from textures/things/special/power/overlaywire.png rename to Mods/Core/Textures/things/special/power/overlaywire.png diff --git a/textures/things/special/power/overlaywireanticipated.png b/Mods/Core/Textures/things/special/power/overlaywireanticipated.png similarity index 100% rename from textures/things/special/power/overlaywireanticipated.png rename to Mods/Core/Textures/things/special/power/overlaywireanticipated.png diff --git a/textures/things/special/power/transmitteratlas.png b/Mods/Core/Textures/things/special/power/transmitteratlas.png similarity index 100% rename from textures/things/special/power/transmitteratlas.png rename to Mods/Core/Textures/things/special/power/transmitteratlas.png diff --git a/textures/things/special/power/wire.png b/Mods/Core/Textures/things/special/power/wire.png similarity index 100% rename from textures/things/special/power/wire.png rename to Mods/Core/Textures/things/special/power/wire.png diff --git a/textures/things/special/terrainblueprint.png b/Mods/Core/Textures/things/special/terrainblueprint.png similarity index 100% rename from textures/things/special/terrainblueprint.png rename to Mods/Core/Textures/things/special/terrainblueprint.png diff --git a/textures/things/world/worldobjects/expanding/PirateOutpost.png b/Mods/Core/Textures/things/world/worldobjects/expanding/PirateOutpost.png similarity index 100% rename from textures/things/world/worldobjects/expanding/PirateOutpost.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/PirateOutpost.png diff --git a/textures/things/world/worldobjects/expanding/Town.png b/Mods/Core/Textures/things/world/worldobjects/expanding/Town.png similarity index 100% rename from textures/things/world/worldobjects/expanding/Town.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/Town.png diff --git a/textures/things/world/worldobjects/expanding/TownRough.png b/Mods/Core/Textures/things/world/worldobjects/expanding/TownRough.png similarity index 100% rename from textures/things/world/worldobjects/expanding/TownRough.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/TownRough.png diff --git a/textures/things/world/worldobjects/expanding/Village.png b/Mods/Core/Textures/things/world/worldobjects/expanding/Village.png similarity index 100% rename from textures/things/world/worldobjects/expanding/Village.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/Village.png diff --git a/textures/things/world/worldobjects/expanding/VillageRough.png b/Mods/Core/Textures/things/world/worldobjects/expanding/VillageRough.png similarity index 100% rename from textures/things/world/worldobjects/expanding/VillageRough.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/VillageRough.png diff --git a/textures/things/world/worldobjects/expanding/VillageSavage.png b/Mods/Core/Textures/things/world/worldobjects/expanding/VillageSavage.png similarity index 100% rename from textures/things/world/worldobjects/expanding/VillageSavage.png rename to Mods/Core/Textures/things/world/worldobjects/expanding/VillageSavage.png diff --git a/textures/ui/VELogo.png b/Mods/Core/Textures/ui/VELogo.png similarity index 100% rename from textures/ui/VELogo.png rename to Mods/Core/Textures/ui/VELogo.png diff --git a/textures/ui/buttons/abandon.png b/Mods/Core/Textures/ui/buttons/abandon.png similarity index 100% rename from textures/ui/buttons/abandon.png rename to Mods/Core/Textures/ui/buttons/abandon.png diff --git a/textures/ui/buttons/abandonspecificcount.png b/Mods/Core/Textures/ui/buttons/abandonspecificcount.png similarity index 100% rename from textures/ui/buttons/abandonspecificcount.png rename to Mods/Core/Textures/ui/buttons/abandonspecificcount.png diff --git a/textures/ui/buttons/autohomearea.png b/Mods/Core/Textures/ui/buttons/autohomearea.png similarity index 100% rename from textures/ui/buttons/autohomearea.png rename to Mods/Core/Textures/ui/buttons/autohomearea.png diff --git a/textures/ui/buttons/copy.png b/Mods/Core/Textures/ui/buttons/copy.png similarity index 100% rename from textures/ui/buttons/copy.png rename to Mods/Core/Textures/ui/buttons/copy.png diff --git a/textures/ui/buttons/delete.png b/Mods/Core/Textures/ui/buttons/delete.png similarity index 100% rename from textures/ui/buttons/delete.png rename to Mods/Core/Textures/ui/buttons/delete.png diff --git a/textures/ui/buttons/dev/add.png b/Mods/Core/Textures/ui/buttons/dev/add.png similarity index 100% rename from textures/ui/buttons/dev/add.png rename to Mods/Core/Textures/ui/buttons/dev/add.png diff --git a/textures/ui/buttons/dev/centeronpoints.png b/Mods/Core/Textures/ui/buttons/dev/centeronpoints.png similarity index 100% rename from textures/ui/buttons/dev/centeronpoints.png rename to Mods/Core/Textures/ui/buttons/dev/centeronpoints.png diff --git a/textures/ui/buttons/dev/collapse.png b/Mods/Core/Textures/ui/buttons/dev/collapse.png similarity index 100% rename from textures/ui/buttons/dev/collapse.png rename to Mods/Core/Textures/ui/buttons/dev/collapse.png diff --git a/textures/ui/buttons/dev/curvereset.png b/Mods/Core/Textures/ui/buttons/dev/curvereset.png similarity index 100% rename from textures/ui/buttons/dev/curvereset.png rename to Mods/Core/Textures/ui/buttons/dev/curvereset.png diff --git a/textures/ui/buttons/dev/empty.png b/Mods/Core/Textures/ui/buttons/dev/empty.png similarity index 100% rename from textures/ui/buttons/dev/empty.png rename to Mods/Core/Textures/ui/buttons/dev/empty.png diff --git a/textures/ui/buttons/dev/inspectmodetoggle.png b/Mods/Core/Textures/ui/buttons/dev/inspectmodetoggle.png similarity index 100% rename from textures/ui/buttons/dev/inspectmodetoggle.png rename to Mods/Core/Textures/ui/buttons/dev/inspectmodetoggle.png diff --git a/textures/ui/buttons/dev/newfile.png b/Mods/Core/Textures/ui/buttons/dev/newfile.png similarity index 100% rename from textures/ui/buttons/dev/newfile.png rename to Mods/Core/Textures/ui/buttons/dev/newfile.png diff --git a/textures/ui/buttons/dev/newitem.png b/Mods/Core/Textures/ui/buttons/dev/newitem.png similarity index 100% rename from textures/ui/buttons/dev/newitem.png rename to Mods/Core/Textures/ui/buttons/dev/newitem.png diff --git a/textures/ui/buttons/dev/play.png b/Mods/Core/Textures/ui/buttons/dev/play.png similarity index 100% rename from textures/ui/buttons/dev/play.png rename to Mods/Core/Textures/ui/buttons/dev/play.png diff --git a/textures/ui/buttons/dev/quickzoomhor1.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomhor1.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomhor1.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomhor1.png diff --git a/textures/ui/buttons/dev/quickzoomhor100.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomhor100.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomhor100.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomhor100.png diff --git a/textures/ui/buttons/dev/quickzoomhor20k.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomhor20k.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomhor20k.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomhor20k.png diff --git a/textures/ui/buttons/dev/quickzoomver1.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomver1.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomver1.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomver1.png diff --git a/textures/ui/buttons/dev/quickzoomver100.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomver100.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomver100.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomver100.png diff --git a/textures/ui/buttons/dev/quickzoomver20k.png b/Mods/Core/Textures/ui/buttons/dev/quickzoomver20k.png similarity index 100% rename from textures/ui/buttons/dev/quickzoomver20k.png rename to Mods/Core/Textures/ui/buttons/dev/quickzoomver20k.png diff --git a/textures/ui/buttons/dev/rangematch.png b/Mods/Core/Textures/ui/buttons/dev/rangematch.png similarity index 100% rename from textures/ui/buttons/dev/rangematch.png rename to Mods/Core/Textures/ui/buttons/dev/rangematch.png diff --git a/textures/ui/buttons/dev/reload.png b/Mods/Core/Textures/ui/buttons/dev/reload.png similarity index 100% rename from textures/ui/buttons/dev/reload.png rename to Mods/Core/Textures/ui/buttons/dev/reload.png diff --git a/textures/ui/buttons/dev/rename.png b/Mods/Core/Textures/ui/buttons/dev/rename.png similarity index 100% rename from textures/ui/buttons/dev/rename.png rename to Mods/Core/Textures/ui/buttons/dev/rename.png diff --git a/textures/ui/buttons/dev/reveal.png b/Mods/Core/Textures/ui/buttons/dev/reveal.png similarity index 100% rename from textures/ui/buttons/dev/reveal.png rename to Mods/Core/Textures/ui/buttons/dev/reveal.png diff --git a/textures/ui/buttons/dev/save.png b/Mods/Core/Textures/ui/buttons/dev/save.png similarity index 100% rename from textures/ui/buttons/dev/save.png rename to Mods/Core/Textures/ui/buttons/dev/save.png diff --git a/textures/ui/buttons/dev/stop.png b/Mods/Core/Textures/ui/buttons/dev/stop.png similarity index 100% rename from textures/ui/buttons/dev/stop.png rename to Mods/Core/Textures/ui/buttons/dev/stop.png diff --git a/textures/ui/buttons/devroot/opendebugactionsmenu.png b/Mods/Core/Textures/ui/buttons/devroot/opendebugactionsmenu.png similarity index 100% rename from textures/ui/buttons/devroot/opendebugactionsmenu.png rename to Mods/Core/Textures/ui/buttons/devroot/opendebugactionsmenu.png diff --git a/textures/ui/buttons/devroot/openinspector.png b/Mods/Core/Textures/ui/buttons/devroot/openinspector.png similarity index 100% rename from textures/ui/buttons/devroot/openinspector.png rename to Mods/Core/Textures/ui/buttons/devroot/openinspector.png diff --git a/textures/ui/buttons/devroot/openinspectsettings.png b/Mods/Core/Textures/ui/buttons/devroot/openinspectsettings.png similarity index 100% rename from textures/ui/buttons/devroot/openinspectsettings.png rename to Mods/Core/Textures/ui/buttons/devroot/openinspectsettings.png diff --git a/textures/ui/buttons/devroot/openpackageeditor.png b/Mods/Core/Textures/ui/buttons/devroot/openpackageeditor.png similarity index 100% rename from textures/ui/buttons/devroot/openpackageeditor.png rename to Mods/Core/Textures/ui/buttons/devroot/openpackageeditor.png diff --git a/textures/ui/buttons/devroot/togglegodmode.png b/Mods/Core/Textures/ui/buttons/devroot/togglegodmode.png similarity index 100% rename from textures/ui/buttons/devroot/togglegodmode.png rename to Mods/Core/Textures/ui/buttons/devroot/togglegodmode.png diff --git a/textures/ui/buttons/devroot/togglelog.png b/Mods/Core/Textures/ui/buttons/devroot/togglelog.png similarity index 100% rename from textures/ui/buttons/devroot/togglelog.png rename to Mods/Core/Textures/ui/buttons/devroot/togglelog.png diff --git a/textures/ui/buttons/devroot/togglepauseonerror.png b/Mods/Core/Textures/ui/buttons/devroot/togglepauseonerror.png similarity index 100% rename from textures/ui/buttons/devroot/togglepauseonerror.png rename to Mods/Core/Textures/ui/buttons/devroot/togglepauseonerror.png diff --git a/textures/ui/buttons/draghash.png b/Mods/Core/Textures/ui/buttons/draghash.png similarity index 100% rename from textures/ui/buttons/draghash.png rename to Mods/Core/Textures/ui/buttons/draghash.png diff --git a/textures/ui/buttons/drop.png b/Mods/Core/Textures/ui/buttons/drop.png similarity index 100% rename from textures/ui/buttons/drop.png rename to Mods/Core/Textures/ui/buttons/drop.png diff --git a/textures/ui/buttons/expandingicons.png b/Mods/Core/Textures/ui/buttons/expandingicons.png similarity index 100% rename from textures/ui/buttons/expandingicons.png rename to Mods/Core/Textures/ui/buttons/expandingicons.png diff --git a/textures/ui/buttons/infobutton.png b/Mods/Core/Textures/ui/buttons/infobutton.png similarity index 100% rename from textures/ui/buttons/infobutton.png rename to Mods/Core/Textures/ui/buttons/infobutton.png diff --git a/textures/ui/buttons/ingest.png b/Mods/Core/Textures/ui/buttons/ingest.png similarity index 100% rename from textures/ui/buttons/ingest.png rename to Mods/Core/Textures/ui/buttons/ingest.png diff --git a/textures/ui/buttons/locknorthup.png b/Mods/Core/Textures/ui/buttons/locknorthup.png similarity index 100% rename from textures/ui/buttons/locknorthup.png rename to Mods/Core/Textures/ui/buttons/locknorthup.png diff --git a/textures/ui/buttons/mainbuttons/IconAnimals.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconAnimals.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconAnimals.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconAnimals.png diff --git a/textures/ui/buttons/mainbuttons/IconArchitect.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconArchitect.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconArchitect.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconArchitect.png diff --git a/textures/ui/buttons/mainbuttons/IconAssign.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconAssign.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconAssign.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconAssign.png diff --git a/textures/ui/buttons/mainbuttons/IconFactions.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconFactions.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconFactions.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconFactions.png diff --git a/textures/ui/buttons/mainbuttons/IconHistory.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconHistory.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconHistory.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconHistory.png diff --git a/textures/ui/buttons/mainbuttons/IconMechanoids.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconMechanoids.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconMechanoids.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconMechanoids.png diff --git a/textures/ui/buttons/mainbuttons/IconMenu.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconMenu.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconMenu.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconMenu.png diff --git a/textures/ui/buttons/mainbuttons/IconQuests.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconQuests.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconQuests.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconQuests.png diff --git a/textures/ui/buttons/mainbuttons/IconResearch.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconResearch.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconResearch.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconResearch.png diff --git a/textures/ui/buttons/mainbuttons/IconRestrict.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconRestrict.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconRestrict.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconRestrict.png diff --git a/textures/ui/buttons/mainbuttons/IconSchedule.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconSchedule.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconSchedule.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconSchedule.png diff --git a/textures/ui/buttons/mainbuttons/IconWildlife.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconWildlife.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconWildlife.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconWildlife.png diff --git a/textures/ui/buttons/mainbuttons/IconWork.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconWork.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconWork.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconWork.png diff --git a/textures/ui/buttons/mainbuttons/IconWorld.png b/Mods/Core/Textures/ui/buttons/mainbuttons/IconWorld.png similarity index 100% rename from textures/ui/buttons/mainbuttons/IconWorld.png rename to Mods/Core/Textures/ui/buttons/mainbuttons/IconWorld.png diff --git a/textures/ui/buttons/minus.png b/Mods/Core/Textures/ui/buttons/minus.png similarity index 100% rename from textures/ui/buttons/minus.png rename to Mods/Core/Textures/ui/buttons/minus.png diff --git a/textures/ui/buttons/openspecifictab.png b/Mods/Core/Textures/ui/buttons/openspecifictab.png similarity index 100% rename from textures/ui/buttons/openspecifictab.png rename to Mods/Core/Textures/ui/buttons/openspecifictab.png diff --git a/textures/ui/buttons/openstatsreport.png b/Mods/Core/Textures/ui/buttons/openstatsreport.png similarity index 100% rename from textures/ui/buttons/openstatsreport.png rename to Mods/Core/Textures/ui/buttons/openstatsreport.png diff --git a/textures/ui/buttons/paste.png b/Mods/Core/Textures/ui/buttons/paste.png similarity index 100% rename from textures/ui/buttons/paste.png rename to Mods/Core/Textures/ui/buttons/paste.png diff --git a/textures/ui/buttons/plus.png b/Mods/Core/Textures/ui/buttons/plus.png similarity index 100% rename from textures/ui/buttons/plus.png rename to Mods/Core/Textures/ui/buttons/plus.png diff --git a/textures/ui/buttons/rename.png b/Mods/Core/Textures/ui/buttons/rename.png similarity index 100% rename from textures/ui/buttons/rename.png rename to Mods/Core/Textures/ui/buttons/rename.png diff --git a/textures/ui/buttons/reorderdown.png b/Mods/Core/Textures/ui/buttons/reorderdown.png similarity index 100% rename from textures/ui/buttons/reorderdown.png rename to Mods/Core/Textures/ui/buttons/reorderdown.png diff --git a/textures/ui/buttons/reorderup.png b/Mods/Core/Textures/ui/buttons/reorderup.png similarity index 100% rename from textures/ui/buttons/reorderup.png rename to Mods/Core/Textures/ui/buttons/reorderup.png diff --git a/textures/ui/buttons/resourcereadoutcategorized.png b/Mods/Core/Textures/ui/buttons/resourcereadoutcategorized.png similarity index 100% rename from textures/ui/buttons/resourcereadoutcategorized.png rename to Mods/Core/Textures/ui/buttons/resourcereadoutcategorized.png diff --git a/textures/ui/buttons/selectnextoverlapping.png b/Mods/Core/Textures/ui/buttons/selectnextoverlapping.png similarity index 100% rename from textures/ui/buttons/selectnextoverlapping.png rename to Mods/Core/Textures/ui/buttons/selectnextoverlapping.png diff --git a/textures/ui/buttons/showcolonistbar.png b/Mods/Core/Textures/ui/buttons/showcolonistbar.png similarity index 100% rename from textures/ui/buttons/showcolonistbar.png rename to Mods/Core/Textures/ui/buttons/showcolonistbar.png diff --git a/textures/ui/buttons/showenvironment.png b/Mods/Core/Textures/ui/buttons/showenvironment.png similarity index 100% rename from textures/ui/buttons/showenvironment.png rename to Mods/Core/Textures/ui/buttons/showenvironment.png diff --git a/textures/ui/buttons/showlearninghelper.png b/Mods/Core/Textures/ui/buttons/showlearninghelper.png similarity index 100% rename from textures/ui/buttons/showlearninghelper.png rename to Mods/Core/Textures/ui/buttons/showlearninghelper.png diff --git a/textures/ui/buttons/showroofoverlay.png b/Mods/Core/Textures/ui/buttons/showroofoverlay.png similarity index 100% rename from textures/ui/buttons/showroofoverlay.png rename to Mods/Core/Textures/ui/buttons/showroofoverlay.png diff --git a/textures/ui/buttons/showzones.png b/Mods/Core/Textures/ui/buttons/showzones.png similarity index 100% rename from textures/ui/buttons/showzones.png rename to Mods/Core/Textures/ui/buttons/showzones.png diff --git a/textures/ui/buttons/suspend.png b/Mods/Core/Textures/ui/buttons/suspend.png similarity index 100% rename from textures/ui/buttons/suspend.png rename to Mods/Core/Textures/ui/buttons/suspend.png diff --git a/textures/ui/buttons/useplanetdaynightsystem.png b/Mods/Core/Textures/ui/buttons/useplanetdaynightsystem.png similarity index 100% rename from textures/ui/buttons/useplanetdaynightsystem.png rename to Mods/Core/Textures/ui/buttons/useplanetdaynightsystem.png diff --git a/textures/ui/commands/abandonhome.png b/Mods/Core/Textures/ui/commands/abandonhome.png similarity index 100% rename from textures/ui/commands/abandonhome.png rename to Mods/Core/Textures/ui/commands/abandonhome.png diff --git a/textures/ui/commands/asmedical.png b/Mods/Core/Textures/ui/commands/asmedical.png similarity index 100% rename from textures/ui/commands/asmedical.png rename to Mods/Core/Textures/ui/commands/asmedical.png diff --git a/textures/ui/commands/assignowner.png b/Mods/Core/Textures/ui/commands/assignowner.png similarity index 100% rename from textures/ui/commands/assignowner.png rename to Mods/Core/Textures/ui/commands/assignowner.png diff --git a/textures/ui/commands/attack.png b/Mods/Core/Textures/ui/commands/attack.png similarity index 100% rename from textures/ui/commands/attack.png rename to Mods/Core/Textures/ui/commands/attack.png diff --git a/textures/ui/commands/copysettings.png b/Mods/Core/Textures/ui/commands/copysettings.png similarity index 100% rename from textures/ui/commands/copysettings.png rename to Mods/Core/Textures/ui/commands/copysettings.png diff --git a/textures/ui/commands/desirepower.png b/Mods/Core/Textures/ui/commands/desirepower.png similarity index 100% rename from textures/ui/commands/desirepower.png rename to Mods/Core/Textures/ui/commands/desirepower.png diff --git a/textures/ui/commands/detonate.png b/Mods/Core/Textures/ui/commands/detonate.png similarity index 100% rename from textures/ui/commands/detonate.png rename to Mods/Core/Textures/ui/commands/detonate.png diff --git a/textures/ui/commands/draft.png b/Mods/Core/Textures/ui/commands/draft.png similarity index 100% rename from textures/ui/commands/draft.png rename to Mods/Core/Textures/ui/commands/draft.png diff --git a/textures/ui/commands/fireatwill.png b/Mods/Core/Textures/ui/commands/fireatwill.png similarity index 100% rename from textures/ui/commands/fireatwill.png rename to Mods/Core/Textures/ui/commands/fireatwill.png diff --git a/textures/ui/commands/forbidden.png b/Mods/Core/Textures/ui/commands/forbidden.png similarity index 100% rename from textures/ui/commands/forbidden.png rename to Mods/Core/Textures/ui/commands/forbidden.png diff --git a/textures/ui/commands/formcaravan.png b/Mods/Core/Textures/ui/commands/formcaravan.png similarity index 100% rename from textures/ui/commands/formcaravan.png rename to Mods/Core/Textures/ui/commands/formcaravan.png diff --git a/textures/ui/commands/forprisoners.png b/Mods/Core/Textures/ui/commands/forprisoners.png similarity index 100% rename from textures/ui/commands/forprisoners.png rename to Mods/Core/Textures/ui/commands/forprisoners.png diff --git a/textures/ui/commands/gatherspotactive.png b/Mods/Core/Textures/ui/commands/gatherspotactive.png similarity index 100% rename from textures/ui/commands/gatherspotactive.png rename to Mods/Core/Textures/ui/commands/gatherspotactive.png diff --git a/textures/ui/commands/getoutofbed.png b/Mods/Core/Textures/ui/commands/getoutofbed.png similarity index 100% rename from textures/ui/commands/getoutofbed.png rename to Mods/Core/Textures/ui/commands/getoutofbed.png diff --git a/textures/ui/commands/halt.png b/Mods/Core/Textures/ui/commands/halt.png similarity index 100% rename from textures/ui/commands/halt.png rename to Mods/Core/Textures/ui/commands/halt.png diff --git a/textures/ui/commands/hidezone.png b/Mods/Core/Textures/ui/commands/hidezone.png similarity index 100% rename from textures/ui/commands/hidezone.png rename to Mods/Core/Textures/ui/commands/hidezone.png diff --git a/textures/ui/commands/holdfire.png b/Mods/Core/Textures/ui/commands/holdfire.png similarity index 100% rename from textures/ui/commands/holdfire.png rename to Mods/Core/Textures/ui/commands/holdfire.png diff --git a/textures/ui/commands/holdopen.png b/Mods/Core/Textures/ui/commands/holdopen.png similarity index 100% rename from textures/ui/commands/holdopen.png rename to Mods/Core/Textures/ui/commands/holdopen.png diff --git a/textures/ui/commands/install.png b/Mods/Core/Textures/ui/commands/install.png similarity index 100% rename from textures/ui/commands/install.png rename to Mods/Core/Textures/ui/commands/install.png diff --git a/textures/ui/commands/launchreport.png b/Mods/Core/Textures/ui/commands/launchreport.png similarity index 100% rename from textures/ui/commands/launchreport.png rename to Mods/Core/Textures/ui/commands/launchreport.png diff --git a/textures/ui/commands/launchship.png b/Mods/Core/Textures/ui/commands/launchship.png similarity index 100% rename from textures/ui/commands/launchship.png rename to Mods/Core/Textures/ui/commands/launchship.png diff --git a/textures/ui/commands/loadtransporter.png b/Mods/Core/Textures/ui/commands/loadtransporter.png similarity index 100% rename from textures/ui/commands/loadtransporter.png rename to Mods/Core/Textures/ui/commands/loadtransporter.png diff --git a/textures/ui/commands/mergecaravans.png b/Mods/Core/Textures/ui/commands/mergecaravans.png similarity index 100% rename from textures/ui/commands/mergecaravans.png rename to Mods/Core/Textures/ui/commands/mergecaravans.png diff --git a/textures/ui/commands/pastesettings.png b/Mods/Core/Textures/ui/commands/pastesettings.png similarity index 100% rename from textures/ui/commands/pastesettings.png rename to Mods/Core/Textures/ui/commands/pastesettings.png diff --git a/textures/ui/commands/podeject.png b/Mods/Core/Textures/ui/commands/podeject.png similarity index 100% rename from textures/ui/commands/podeject.png rename to Mods/Core/Textures/ui/commands/podeject.png diff --git a/textures/ui/commands/releaseanimals.png b/Mods/Core/Textures/ui/commands/releaseanimals.png similarity index 100% rename from textures/ui/commands/releaseanimals.png rename to Mods/Core/Textures/ui/commands/releaseanimals.png diff --git a/textures/ui/commands/renamezone.png b/Mods/Core/Textures/ui/commands/renamezone.png similarity index 100% rename from textures/ui/commands/renamezone.png rename to Mods/Core/Textures/ui/commands/renamezone.png diff --git a/textures/ui/commands/selectalltransporters.png b/Mods/Core/Textures/ui/commands/selectalltransporters.png similarity index 100% rename from textures/ui/commands/selectalltransporters.png rename to Mods/Core/Textures/ui/commands/selectalltransporters.png diff --git a/textures/ui/commands/selectnexttransporter.png b/Mods/Core/Textures/ui/commands/selectnexttransporter.png similarity index 100% rename from textures/ui/commands/selectnexttransporter.png rename to Mods/Core/Textures/ui/commands/selectnexttransporter.png diff --git a/textures/ui/commands/selectprevioustransporter.png b/Mods/Core/Textures/ui/commands/selectprevioustransporter.png similarity index 100% rename from textures/ui/commands/selectprevioustransporter.png rename to Mods/Core/Textures/ui/commands/selectprevioustransporter.png diff --git a/textures/ui/commands/setplanttogrow.png b/Mods/Core/Textures/ui/commands/setplanttogrow.png similarity index 100% rename from textures/ui/commands/setplanttogrow.png rename to Mods/Core/Textures/ui/commands/setplanttogrow.png diff --git a/textures/ui/commands/settargetfuellevel.png b/Mods/Core/Textures/ui/commands/settargetfuellevel.png similarity index 100% rename from textures/ui/commands/settargetfuellevel.png rename to Mods/Core/Textures/ui/commands/settargetfuellevel.png diff --git a/textures/ui/commands/settle.png b/Mods/Core/Textures/ui/commands/settle.png similarity index 100% rename from textures/ui/commands/settle.png rename to Mods/Core/Textures/ui/commands/settle.png diff --git a/textures/ui/commands/showmap.png b/Mods/Core/Textures/ui/commands/showmap.png similarity index 100% rename from textures/ui/commands/showmap.png rename to Mods/Core/Textures/ui/commands/showmap.png diff --git a/textures/ui/commands/splitcaravan.png b/Mods/Core/Textures/ui/commands/splitcaravan.png similarity index 100% rename from textures/ui/commands/splitcaravan.png rename to Mods/Core/Textures/ui/commands/splitcaravan.png diff --git a/textures/ui/commands/squadattack.png b/Mods/Core/Textures/ui/commands/squadattack.png similarity index 100% rename from textures/ui/commands/squadattack.png rename to Mods/Core/Textures/ui/commands/squadattack.png diff --git a/textures/ui/commands/templower.png b/Mods/Core/Textures/ui/commands/templower.png similarity index 100% rename from textures/ui/commands/templower.png rename to Mods/Core/Textures/ui/commands/templower.png diff --git a/textures/ui/commands/tempraise.png b/Mods/Core/Textures/ui/commands/tempraise.png similarity index 100% rename from textures/ui/commands/tempraise.png rename to Mods/Core/Textures/ui/commands/tempraise.png diff --git a/textures/ui/commands/tempreset.png b/Mods/Core/Textures/ui/commands/tempreset.png similarity index 100% rename from textures/ui/commands/tempreset.png rename to Mods/Core/Textures/ui/commands/tempreset.png diff --git a/textures/ui/commands/trade.png b/Mods/Core/Textures/ui/commands/trade.png similarity index 100% rename from textures/ui/commands/trade.png rename to Mods/Core/Textures/ui/commands/trade.png diff --git a/textures/ui/commands/tryreconnect.png b/Mods/Core/Textures/ui/commands/tryreconnect.png similarity index 100% rename from textures/ui/commands/tryreconnect.png rename to Mods/Core/Textures/ui/commands/tryreconnect.png diff --git a/textures/ui/commands/vent.png b/Mods/Core/Textures/ui/commands/vent.png similarity index 100% rename from textures/ui/commands/vent.png rename to Mods/Core/Textures/ui/commands/vent.png diff --git a/textures/ui/cursors/cursorcustom.png b/Mods/Core/Textures/ui/cursors/cursorcustom.png similarity index 100% rename from textures/ui/cursors/cursorcustom.png rename to Mods/Core/Textures/ui/cursors/cursorcustom.png diff --git a/textures/ui/designators/areaallowedclear.png b/Mods/Core/Textures/ui/designators/areaallowedclear.png similarity index 100% rename from textures/ui/designators/areaallowedclear.png rename to Mods/Core/Textures/ui/designators/areaallowedclear.png diff --git a/textures/ui/designators/areaallowedexpand.png b/Mods/Core/Textures/ui/designators/areaallowedexpand.png similarity index 100% rename from textures/ui/designators/areaallowedexpand.png rename to Mods/Core/Textures/ui/designators/areaallowedexpand.png diff --git a/textures/ui/designators/buildroofareaclear.png b/Mods/Core/Textures/ui/designators/buildroofareaclear.png similarity index 100% rename from textures/ui/designators/buildroofareaclear.png rename to Mods/Core/Textures/ui/designators/buildroofareaclear.png diff --git a/textures/ui/designators/buildroofareaexpand.png b/Mods/Core/Textures/ui/designators/buildroofareaexpand.png similarity index 100% rename from textures/ui/designators/buildroofareaexpand.png rename to Mods/Core/Textures/ui/designators/buildroofareaexpand.png diff --git a/textures/ui/designators/cancel.png b/Mods/Core/Textures/ui/designators/cancel.png similarity index 100% rename from textures/ui/designators/cancel.png rename to Mods/Core/Textures/ui/designators/cancel.png diff --git a/textures/ui/designators/claim.png b/Mods/Core/Textures/ui/designators/claim.png similarity index 100% rename from textures/ui/designators/claim.png rename to Mods/Core/Textures/ui/designators/claim.png diff --git a/textures/ui/designators/cutplants.png b/Mods/Core/Textures/ui/designators/cutplants.png similarity index 100% rename from textures/ui/designators/cutplants.png rename to Mods/Core/Textures/ui/designators/cutplants.png diff --git a/textures/ui/designators/deconstruct.png b/Mods/Core/Textures/ui/designators/deconstruct.png similarity index 100% rename from textures/ui/designators/deconstruct.png rename to Mods/Core/Textures/ui/designators/deconstruct.png diff --git a/textures/ui/designators/harvest.png b/Mods/Core/Textures/ui/designators/harvest.png similarity index 100% rename from textures/ui/designators/harvest.png rename to Mods/Core/Textures/ui/designators/harvest.png diff --git a/textures/ui/designators/harvestwood.png b/Mods/Core/Textures/ui/designators/harvestwood.png similarity index 100% rename from textures/ui/designators/harvestwood.png rename to Mods/Core/Textures/ui/designators/harvestwood.png diff --git a/textures/ui/designators/haul.png b/Mods/Core/Textures/ui/designators/haul.png similarity index 100% rename from textures/ui/designators/haul.png rename to Mods/Core/Textures/ui/designators/haul.png diff --git a/textures/ui/designators/homeareaoff.png b/Mods/Core/Textures/ui/designators/homeareaoff.png similarity index 100% rename from textures/ui/designators/homeareaoff.png rename to Mods/Core/Textures/ui/designators/homeareaoff.png diff --git a/textures/ui/designators/homeareaon.png b/Mods/Core/Textures/ui/designators/homeareaon.png similarity index 100% rename from textures/ui/designators/homeareaon.png rename to Mods/Core/Textures/ui/designators/homeareaon.png diff --git a/textures/ui/designators/hunt.png b/Mods/Core/Textures/ui/designators/hunt.png similarity index 100% rename from textures/ui/designators/hunt.png rename to Mods/Core/Textures/ui/designators/hunt.png diff --git a/textures/ui/designators/mine.png b/Mods/Core/Textures/ui/designators/mine.png similarity index 100% rename from textures/ui/designators/mine.png rename to Mods/Core/Textures/ui/designators/mine.png diff --git a/textures/ui/designators/noroofareaoff.png b/Mods/Core/Textures/ui/designators/noroofareaoff.png similarity index 100% rename from textures/ui/designators/noroofareaoff.png rename to Mods/Core/Textures/ui/designators/noroofareaoff.png diff --git a/textures/ui/designators/noroofareaon.png b/Mods/Core/Textures/ui/designators/noroofareaon.png similarity index 100% rename from textures/ui/designators/noroofareaon.png rename to Mods/Core/Textures/ui/designators/noroofareaon.png diff --git a/textures/ui/designators/open.png b/Mods/Core/Textures/ui/designators/open.png similarity index 100% rename from textures/ui/designators/open.png rename to Mods/Core/Textures/ui/designators/open.png diff --git a/textures/ui/designators/planoff.png b/Mods/Core/Textures/ui/designators/planoff.png similarity index 100% rename from textures/ui/designators/planoff.png rename to Mods/Core/Textures/ui/designators/planoff.png diff --git a/textures/ui/designators/planon.png b/Mods/Core/Textures/ui/designators/planon.png similarity index 100% rename from textures/ui/designators/planon.png rename to Mods/Core/Textures/ui/designators/planon.png diff --git a/textures/ui/designators/rearmtrap.png b/Mods/Core/Textures/ui/designators/rearmtrap.png similarity index 100% rename from textures/ui/designators/rearmtrap.png rename to Mods/Core/Textures/ui/designators/rearmtrap.png diff --git a/textures/ui/designators/removefloor.png b/Mods/Core/Textures/ui/designators/removefloor.png similarity index 100% rename from textures/ui/designators/removefloor.png rename to Mods/Core/Textures/ui/designators/removefloor.png diff --git a/textures/ui/designators/slaughter.png b/Mods/Core/Textures/ui/designators/slaughter.png similarity index 100% rename from textures/ui/designators/slaughter.png rename to Mods/Core/Textures/ui/designators/slaughter.png diff --git a/textures/ui/designators/smoothfloor.png b/Mods/Core/Textures/ui/designators/smoothfloor.png similarity index 100% rename from textures/ui/designators/smoothfloor.png rename to Mods/Core/Textures/ui/designators/smoothfloor.png diff --git a/textures/ui/designators/snowclearareaoff.png b/Mods/Core/Textures/ui/designators/snowclearareaoff.png similarity index 100% rename from textures/ui/designators/snowclearareaoff.png rename to Mods/Core/Textures/ui/designators/snowclearareaoff.png diff --git a/textures/ui/designators/snowclearareaon.png b/Mods/Core/Textures/ui/designators/snowclearareaon.png similarity index 100% rename from textures/ui/designators/snowclearareaon.png rename to Mods/Core/Textures/ui/designators/snowclearareaon.png diff --git a/textures/ui/designators/strip.png b/Mods/Core/Textures/ui/designators/strip.png similarity index 100% rename from textures/ui/designators/strip.png rename to Mods/Core/Textures/ui/designators/strip.png diff --git a/textures/ui/designators/tame.png b/Mods/Core/Textures/ui/designators/tame.png similarity index 100% rename from textures/ui/designators/tame.png rename to Mods/Core/Textures/ui/designators/tame.png diff --git a/textures/ui/designators/uninstall.png b/Mods/Core/Textures/ui/designators/uninstall.png similarity index 100% rename from textures/ui/designators/uninstall.png rename to Mods/Core/Textures/ui/designators/uninstall.png diff --git a/textures/ui/designators/zonecreate_growing.png b/Mods/Core/Textures/ui/designators/zonecreate_growing.png similarity index 100% rename from textures/ui/designators/zonecreate_growing.png rename to Mods/Core/Textures/ui/designators/zonecreate_growing.png diff --git a/textures/ui/designators/zonecreate_stockpile.png b/Mods/Core/Textures/ui/designators/zonecreate_stockpile.png similarity index 100% rename from textures/ui/designators/zonecreate_stockpile.png rename to Mods/Core/Textures/ui/designators/zonecreate_stockpile.png diff --git a/textures/ui/designators/zonedelete.png b/Mods/Core/Textures/ui/designators/zonedelete.png similarity index 100% rename from textures/ui/designators/zonedelete.png rename to Mods/Core/Textures/ui/designators/zonedelete.png diff --git a/textures/ui/heroart/bgplanet.png b/Mods/Core/Textures/ui/heroart/bgplanet.png similarity index 100% rename from textures/ui/heroart/bgplanet.png rename to Mods/Core/Textures/ui/heroart/bgplanet.png diff --git a/textures/ui/heroart/gametitle.png b/Mods/Core/Textures/ui/heroart/gametitle.png similarity index 100% rename from textures/ui/heroart/gametitle.png rename to Mods/Core/Textures/ui/heroart/gametitle.png diff --git a/textures/ui/heroart/ludeonlogosmall.png b/Mods/Core/Textures/ui/heroart/ludeonlogosmall.png similarity index 100% rename from textures/ui/heroart/ludeonlogosmall.png rename to Mods/Core/Textures/ui/heroart/ludeonlogosmall.png diff --git a/textures/ui/heroart/rimworldlogo.png b/Mods/Core/Textures/ui/heroart/rimworldlogo.png similarity index 100% rename from textures/ui/heroart/rimworldlogo.png rename to Mods/Core/Textures/ui/heroart/rimworldlogo.png diff --git a/textures/ui/heroart/storytellers/cassandraclassic.png b/Mods/Core/Textures/ui/heroart/storytellers/cassandraclassic.png similarity index 100% rename from textures/ui/heroart/storytellers/cassandraclassic.png rename to Mods/Core/Textures/ui/heroart/storytellers/cassandraclassic.png diff --git a/textures/ui/heroart/storytellers/cassandraclassictiny.png b/Mods/Core/Textures/ui/heroart/storytellers/cassandraclassictiny.png similarity index 100% rename from textures/ui/heroart/storytellers/cassandraclassictiny.png rename to Mods/Core/Textures/ui/heroart/storytellers/cassandraclassictiny.png diff --git a/textures/ui/heroart/storytellers/highlight.png b/Mods/Core/Textures/ui/heroart/storytellers/highlight.png similarity index 100% rename from textures/ui/heroart/storytellers/highlight.png rename to Mods/Core/Textures/ui/heroart/storytellers/highlight.png diff --git a/textures/ui/heroart/storytellers/phoebefriendly.png b/Mods/Core/Textures/ui/heroart/storytellers/phoebefriendly.png similarity index 100% rename from textures/ui/heroart/storytellers/phoebefriendly.png rename to Mods/Core/Textures/ui/heroart/storytellers/phoebefriendly.png diff --git a/textures/ui/heroart/storytellers/phoebefriendlytiny.png b/Mods/Core/Textures/ui/heroart/storytellers/phoebefriendlytiny.png similarity index 100% rename from textures/ui/heroart/storytellers/phoebefriendlytiny.png rename to Mods/Core/Textures/ui/heroart/storytellers/phoebefriendlytiny.png diff --git a/textures/ui/heroart/storytellers/randyrandom.png b/Mods/Core/Textures/ui/heroart/storytellers/randyrandom.png similarity index 100% rename from textures/ui/heroart/storytellers/randyrandom.png rename to Mods/Core/Textures/ui/heroart/storytellers/randyrandom.png diff --git a/textures/ui/heroart/storytellers/randyrandomtiny.png b/Mods/Core/Textures/ui/heroart/storytellers/randyrandomtiny.png similarity index 100% rename from textures/ui/heroart/storytellers/randyrandomtiny.png rename to Mods/Core/Textures/ui/heroart/storytellers/randyrandomtiny.png diff --git a/textures/ui/heroart/webicons/blog.png b/Mods/Core/Textures/ui/heroart/webicons/blog.png similarity index 100% rename from textures/ui/heroart/webicons/blog.png rename to Mods/Core/Textures/ui/heroart/webicons/blog.png diff --git a/textures/ui/heroart/webicons/book.png b/Mods/Core/Textures/ui/heroart/webicons/book.png similarity index 100% rename from textures/ui/heroart/webicons/book.png rename to Mods/Core/Textures/ui/heroart/webicons/book.png diff --git a/textures/ui/heroart/webicons/forums.png b/Mods/Core/Textures/ui/heroart/webicons/forums.png similarity index 100% rename from textures/ui/heroart/webicons/forums.png rename to Mods/Core/Textures/ui/heroart/webicons/forums.png diff --git a/textures/ui/heroart/webicons/soundtrack.png b/Mods/Core/Textures/ui/heroart/webicons/soundtrack.png similarity index 100% rename from textures/ui/heroart/webicons/soundtrack.png rename to Mods/Core/Textures/ui/heroart/webicons/soundtrack.png diff --git a/textures/ui/heroart/webicons/twitter.png b/Mods/Core/Textures/ui/heroart/webicons/twitter.png similarity index 100% rename from textures/ui/heroart/webicons/twitter.png rename to Mods/Core/Textures/ui/heroart/webicons/twitter.png diff --git a/textures/ui/icons/animal/followdrafted.png b/Mods/Core/Textures/ui/icons/animal/followdrafted.png similarity index 100% rename from textures/ui/icons/animal/followdrafted.png rename to Mods/Core/Textures/ui/icons/animal/followdrafted.png diff --git a/textures/ui/icons/animal/followfieldwork.png b/Mods/Core/Textures/ui/icons/animal/followfieldwork.png similarity index 100% rename from textures/ui/icons/animal/followfieldwork.png rename to Mods/Core/Textures/ui/icons/animal/followfieldwork.png diff --git a/textures/ui/icons/animal/slaughter.png b/Mods/Core/Textures/ui/icons/animal/slaughter.png similarity index 100% rename from textures/ui/icons/animal/slaughter.png rename to Mods/Core/Textures/ui/icons/animal/slaughter.png diff --git a/textures/ui/icons/colonistbar/attacking.png b/Mods/Core/Textures/ui/icons/colonistbar/attacking.png similarity index 100% rename from textures/ui/icons/colonistbar/attacking.png rename to Mods/Core/Textures/ui/icons/colonistbar/attacking.png diff --git a/textures/ui/icons/colonistbar/burning.png b/Mods/Core/Textures/ui/icons/colonistbar/burning.png similarity index 100% rename from textures/ui/icons/colonistbar/burning.png rename to Mods/Core/Textures/ui/icons/colonistbar/burning.png diff --git a/textures/ui/icons/colonistbar/fleeing.png b/Mods/Core/Textures/ui/icons/colonistbar/fleeing.png similarity index 100% rename from textures/ui/icons/colonistbar/fleeing.png rename to Mods/Core/Textures/ui/icons/colonistbar/fleeing.png diff --git a/textures/ui/icons/colonistbar/idle.png b/Mods/Core/Textures/ui/icons/colonistbar/idle.png similarity index 100% rename from textures/ui/icons/colonistbar/idle.png rename to Mods/Core/Textures/ui/icons/colonistbar/idle.png diff --git a/textures/ui/icons/colonistbar/medicalrest.png b/Mods/Core/Textures/ui/icons/colonistbar/medicalrest.png similarity index 100% rename from textures/ui/icons/colonistbar/medicalrest.png rename to Mods/Core/Textures/ui/icons/colonistbar/medicalrest.png diff --git a/textures/ui/icons/colonistbar/mentalstateaggro.png b/Mods/Core/Textures/ui/icons/colonistbar/mentalstateaggro.png similarity index 100% rename from textures/ui/icons/colonistbar/mentalstateaggro.png rename to Mods/Core/Textures/ui/icons/colonistbar/mentalstateaggro.png diff --git a/textures/ui/icons/colonistbar/mentalstatenonaggro.png b/Mods/Core/Textures/ui/icons/colonistbar/mentalstatenonaggro.png similarity index 100% rename from textures/ui/icons/colonistbar/mentalstatenonaggro.png rename to Mods/Core/Textures/ui/icons/colonistbar/mentalstatenonaggro.png diff --git a/textures/ui/icons/colonistbar/sleeping.png b/Mods/Core/Textures/ui/icons/colonistbar/sleeping.png similarity index 100% rename from textures/ui/icons/colonistbar/sleeping.png rename to Mods/Core/Textures/ui/icons/colonistbar/sleeping.png diff --git a/textures/ui/icons/contentsources/canupload.png b/Mods/Core/Textures/ui/icons/contentsources/canupload.png similarity index 100% rename from textures/ui/icons/contentsources/canupload.png rename to Mods/Core/Textures/ui/icons/contentsources/canupload.png diff --git a/textures/ui/icons/contentsources/localfolder.png b/Mods/Core/Textures/ui/icons/contentsources/localfolder.png similarity index 100% rename from textures/ui/icons/contentsources/localfolder.png rename to Mods/Core/Textures/ui/icons/contentsources/localfolder.png diff --git a/textures/ui/icons/contentsources/steamworkshop.png b/Mods/Core/Textures/ui/icons/contentsources/steamworkshop.png similarity index 100% rename from textures/ui/icons/contentsources/steamworkshop.png rename to Mods/Core/Textures/ui/icons/contentsources/steamworkshop.png diff --git a/textures/ui/icons/drugpolicy/foraddiction.png b/Mods/Core/Textures/ui/icons/drugpolicy/foraddiction.png similarity index 100% rename from textures/ui/icons/drugpolicy/foraddiction.png rename to Mods/Core/Textures/ui/icons/drugpolicy/foraddiction.png diff --git a/textures/ui/icons/drugpolicy/forjoy.png b/Mods/Core/Textures/ui/icons/drugpolicy/forjoy.png similarity index 100% rename from textures/ui/icons/drugpolicy/forjoy.png rename to Mods/Core/Textures/ui/icons/drugpolicy/forjoy.png diff --git a/textures/ui/icons/drugpolicy/scheduled.png b/Mods/Core/Textures/ui/icons/drugpolicy/scheduled.png similarity index 100% rename from textures/ui/icons/drugpolicy/scheduled.png rename to Mods/Core/Textures/ui/icons/drugpolicy/scheduled.png diff --git a/textures/ui/icons/fixedcheck.png b/Mods/Core/Textures/ui/icons/fixedcheck.png similarity index 100% rename from textures/ui/icons/fixedcheck.png rename to Mods/Core/Textures/ui/icons/fixedcheck.png diff --git a/textures/ui/icons/gender/female.png b/Mods/Core/Textures/ui/icons/gender/female.png similarity index 100% rename from textures/ui/icons/gender/female.png rename to Mods/Core/Textures/ui/icons/gender/female.png diff --git a/textures/ui/icons/gender/genderless.png b/Mods/Core/Textures/ui/icons/gender/genderless.png similarity index 100% rename from textures/ui/icons/gender/genderless.png rename to Mods/Core/Textures/ui/icons/gender/genderless.png diff --git a/textures/ui/icons/gender/male.png b/Mods/Core/Textures/ui/icons/gender/male.png similarity index 100% rename from textures/ui/icons/gender/male.png rename to Mods/Core/Textures/ui/icons/gender/male.png diff --git a/textures/ui/icons/hostilityresponse/attack.png b/Mods/Core/Textures/ui/icons/hostilityresponse/attack.png similarity index 100% rename from textures/ui/icons/hostilityresponse/attack.png rename to Mods/Core/Textures/ui/icons/hostilityresponse/attack.png diff --git a/textures/ui/icons/hostilityresponse/flee.png b/Mods/Core/Textures/ui/icons/hostilityresponse/flee.png similarity index 100% rename from textures/ui/icons/hostilityresponse/flee.png rename to Mods/Core/Textures/ui/icons/hostilityresponse/flee.png diff --git a/textures/ui/icons/hostilityresponse/ignore.png b/Mods/Core/Textures/ui/icons/hostilityresponse/ignore.png similarity index 100% rename from textures/ui/icons/hostilityresponse/ignore.png rename to Mods/Core/Textures/ui/icons/hostilityresponse/ignore.png diff --git a/textures/ui/icons/lifestage/adult.png b/Mods/Core/Textures/ui/icons/lifestage/adult.png similarity index 100% rename from textures/ui/icons/lifestage/adult.png rename to Mods/Core/Textures/ui/icons/lifestage/adult.png diff --git a/textures/ui/icons/lifestage/veryyoung.png b/Mods/Core/Textures/ui/icons/lifestage/veryyoung.png similarity index 100% rename from textures/ui/icons/lifestage/veryyoung.png rename to Mods/Core/Textures/ui/icons/lifestage/veryyoung.png diff --git a/textures/ui/icons/lifestage/young.png b/Mods/Core/Textures/ui/icons/lifestage/young.png similarity index 100% rename from textures/ui/icons/lifestage/young.png rename to Mods/Core/Textures/ui/icons/lifestage/young.png diff --git a/textures/ui/icons/medical/bandagewell.png b/Mods/Core/Textures/ui/icons/medical/bandagewell.png similarity index 100% rename from textures/ui/icons/medical/bandagewell.png rename to Mods/Core/Textures/ui/icons/medical/bandagewell.png diff --git a/textures/ui/icons/medical/bleeding.png b/Mods/Core/Textures/ui/icons/medical/bleeding.png similarity index 100% rename from textures/ui/icons/medical/bleeding.png rename to Mods/Core/Textures/ui/icons/medical/bleeding.png diff --git a/textures/ui/icons/medical/iconimmune.png b/Mods/Core/Textures/ui/icons/medical/iconimmune.png similarity index 100% rename from textures/ui/icons/medical/iconimmune.png rename to Mods/Core/Textures/ui/icons/medical/iconimmune.png diff --git a/textures/ui/icons/medical/nocare.png b/Mods/Core/Textures/ui/icons/medical/nocare.png similarity index 100% rename from textures/ui/icons/medical/nocare.png rename to Mods/Core/Textures/ui/icons/medical/nocare.png diff --git a/textures/ui/icons/medical/nomeds.png b/Mods/Core/Textures/ui/icons/medical/nomeds.png similarity index 100% rename from textures/ui/icons/medical/nomeds.png rename to Mods/Core/Textures/ui/icons/medical/nomeds.png diff --git a/textures/ui/icons/medical/tendedneed.png b/Mods/Core/Textures/ui/icons/medical/tendedneed.png similarity index 100% rename from textures/ui/icons/medical/tendedneed.png rename to Mods/Core/Textures/ui/icons/medical/tendedneed.png diff --git a/textures/ui/icons/medical/tendedwell.png b/Mods/Core/Textures/ui/icons/medical/tendedwell.png similarity index 100% rename from textures/ui/icons/medical/tendedwell.png rename to Mods/Core/Textures/ui/icons/medical/tendedwell.png diff --git a/textures/ui/icons/passionmajor.png b/Mods/Core/Textures/ui/icons/passionmajor.png similarity index 100% rename from textures/ui/icons/passionmajor.png rename to Mods/Core/Textures/ui/icons/passionmajor.png diff --git a/textures/ui/icons/passionmajorgray.png b/Mods/Core/Textures/ui/icons/passionmajorgray.png similarity index 100% rename from textures/ui/icons/passionmajorgray.png rename to Mods/Core/Textures/ui/icons/passionmajorgray.png diff --git a/textures/ui/icons/passionminor.png b/Mods/Core/Textures/ui/icons/passionminor.png similarity index 100% rename from textures/ui/icons/passionminor.png rename to Mods/Core/Textures/ui/icons/passionminor.png diff --git a/textures/ui/icons/passionminorgray.png b/Mods/Core/Textures/ui/icons/passionminorgray.png similarity index 100% rename from textures/ui/icons/passionminorgray.png rename to Mods/Core/Textures/ui/icons/passionminorgray.png diff --git a/textures/ui/icons/pregnant.png b/Mods/Core/Textures/ui/icons/pregnant.png similarity index 100% rename from textures/ui/icons/pregnant.png rename to Mods/Core/Textures/ui/icons/pregnant.png diff --git a/textures/ui/icons/sorting.png b/Mods/Core/Textures/ui/icons/sorting.png similarity index 100% rename from textures/ui/icons/sorting.png rename to Mods/Core/Textures/ui/icons/sorting.png diff --git a/textures/ui/icons/sortingdescending.png b/Mods/Core/Textures/ui/icons/sortingdescending.png similarity index 100% rename from textures/ui/icons/sortingdescending.png rename to Mods/Core/Textures/ui/icons/sortingdescending.png diff --git a/textures/ui/icons/thingcategories/animalproductraw.png b/Mods/Core/Textures/ui/icons/thingcategories/animalproductraw.png similarity index 100% rename from textures/ui/icons/thingcategories/animalproductraw.png rename to Mods/Core/Textures/ui/icons/thingcategories/animalproductraw.png diff --git a/textures/ui/icons/thingcategories/drugs.png b/Mods/Core/Textures/ui/icons/thingcategories/drugs.png similarity index 100% rename from textures/ui/icons/thingcategories/drugs.png rename to Mods/Core/Textures/ui/icons/thingcategories/drugs.png diff --git a/textures/ui/icons/thingcategories/eggsfertilized.png b/Mods/Core/Textures/ui/icons/thingcategories/eggsfertilized.png similarity index 100% rename from textures/ui/icons/thingcategories/eggsfertilized.png rename to Mods/Core/Textures/ui/icons/thingcategories/eggsfertilized.png diff --git a/textures/ui/icons/thingcategories/eggsunfertilized.png b/Mods/Core/Textures/ui/icons/thingcategories/eggsunfertilized.png similarity index 100% rename from textures/ui/icons/thingcategories/eggsunfertilized.png rename to Mods/Core/Textures/ui/icons/thingcategories/eggsunfertilized.png diff --git a/textures/ui/icons/thingcategories/foodmeals.png b/Mods/Core/Textures/ui/icons/thingcategories/foodmeals.png similarity index 100% rename from textures/ui/icons/thingcategories/foodmeals.png rename to Mods/Core/Textures/ui/icons/thingcategories/foodmeals.png diff --git a/textures/ui/icons/thingcategories/foodraw.png b/Mods/Core/Textures/ui/icons/thingcategories/foodraw.png similarity index 100% rename from textures/ui/icons/thingcategories/foodraw.png rename to Mods/Core/Textures/ui/icons/thingcategories/foodraw.png diff --git a/textures/ui/icons/thingcategories/foods.png b/Mods/Core/Textures/ui/icons/thingcategories/foods.png similarity index 100% rename from textures/ui/icons/thingcategories/foods.png rename to Mods/Core/Textures/ui/icons/thingcategories/foods.png diff --git a/textures/ui/icons/thingcategories/leathers.png b/Mods/Core/Textures/ui/icons/thingcategories/leathers.png similarity index 100% rename from textures/ui/icons/thingcategories/leathers.png rename to Mods/Core/Textures/ui/icons/thingcategories/leathers.png diff --git a/textures/ui/icons/thingcategories/manufactured.png b/Mods/Core/Textures/ui/icons/thingcategories/manufactured.png similarity index 100% rename from textures/ui/icons/thingcategories/manufactured.png rename to Mods/Core/Textures/ui/icons/thingcategories/manufactured.png diff --git a/textures/ui/icons/thingcategories/meatraw.png b/Mods/Core/Textures/ui/icons/thingcategories/meatraw.png similarity index 100% rename from textures/ui/icons/thingcategories/meatraw.png rename to Mods/Core/Textures/ui/icons/thingcategories/meatraw.png diff --git a/textures/ui/icons/thingcategories/medicine.png b/Mods/Core/Textures/ui/icons/thingcategories/medicine.png similarity index 100% rename from textures/ui/icons/thingcategories/medicine.png rename to Mods/Core/Textures/ui/icons/thingcategories/medicine.png diff --git a/textures/ui/icons/thingcategories/plantfoodraw.png b/Mods/Core/Textures/ui/icons/thingcategories/plantfoodraw.png similarity index 100% rename from textures/ui/icons/thingcategories/plantfoodraw.png rename to Mods/Core/Textures/ui/icons/thingcategories/plantfoodraw.png diff --git a/textures/ui/icons/thingcategories/plantmatter.png b/Mods/Core/Textures/ui/icons/thingcategories/plantmatter.png similarity index 100% rename from textures/ui/icons/thingcategories/plantmatter.png rename to Mods/Core/Textures/ui/icons/thingcategories/plantmatter.png diff --git a/textures/ui/icons/thingcategories/resourcesraw.png b/Mods/Core/Textures/ui/icons/thingcategories/resourcesraw.png similarity index 100% rename from textures/ui/icons/thingcategories/resourcesraw.png rename to Mods/Core/Textures/ui/icons/thingcategories/resourcesraw.png diff --git a/textures/ui/icons/thingcategories/stoneblocks.png b/Mods/Core/Textures/ui/icons/thingcategories/stoneblocks.png similarity index 100% rename from textures/ui/icons/thingcategories/stoneblocks.png rename to Mods/Core/Textures/ui/icons/thingcategories/stoneblocks.png diff --git a/textures/ui/icons/thingcategories/stonechunks.png b/Mods/Core/Textures/ui/icons/thingcategories/stonechunks.png similarity index 100% rename from textures/ui/icons/thingcategories/stonechunks.png rename to Mods/Core/Textures/ui/icons/thingcategories/stonechunks.png diff --git a/textures/ui/icons/thingcategories/textiles.png b/Mods/Core/Textures/ui/icons/thingcategories/textiles.png similarity index 100% rename from textures/ui/icons/thingcategories/textiles.png rename to Mods/Core/Textures/ui/icons/thingcategories/textiles.png diff --git a/textures/ui/icons/trainables/haul.png b/Mods/Core/Textures/ui/icons/trainables/haul.png similarity index 100% rename from textures/ui/icons/trainables/haul.png rename to Mods/Core/Textures/ui/icons/trainables/haul.png diff --git a/textures/ui/icons/trainables/obedience.png b/Mods/Core/Textures/ui/icons/trainables/obedience.png similarity index 100% rename from textures/ui/icons/trainables/obedience.png rename to Mods/Core/Textures/ui/icons/trainables/obedience.png diff --git a/textures/ui/icons/trainables/release.png b/Mods/Core/Textures/ui/icons/trainables/release.png similarity index 100% rename from textures/ui/icons/trainables/release.png rename to Mods/Core/Textures/ui/icons/trainables/release.png diff --git a/textures/ui/icons/trainables/rescue.png b/Mods/Core/Textures/ui/icons/trainables/rescue.png similarity index 100% rename from textures/ui/icons/trainables/rescue.png rename to Mods/Core/Textures/ui/icons/trainables/rescue.png diff --git a/textures/ui/letters/customchoiceletter.png b/Mods/Core/Textures/ui/letters/customchoiceletter.png similarity index 100% rename from textures/ui/letters/customchoiceletter.png rename to Mods/Core/Textures/ui/letters/customchoiceletter.png diff --git a/textures/ui/letters/letterunopened.png b/Mods/Core/Textures/ui/letters/letterunopened.png similarity index 100% rename from textures/ui/letters/letterunopened.png rename to Mods/Core/Textures/ui/letters/letterunopened.png diff --git a/textures/ui/misc/alertflasharrow.png b/Mods/Core/Textures/ui/misc/alertflasharrow.png similarity index 100% rename from textures/ui/misc/alertflasharrow.png rename to Mods/Core/Textures/ui/misc/alertflasharrow.png diff --git a/textures/ui/misc/badtexture.png b/Mods/Core/Textures/ui/misc/badtexture.png similarity index 100% rename from textures/ui/misc/badtexture.png rename to Mods/Core/Textures/ui/misc/badtexture.png diff --git a/textures/ui/misc/barinstantmarker.png b/Mods/Core/Textures/ui/misc/barinstantmarker.png similarity index 100% rename from textures/ui/misc/barinstantmarker.png rename to Mods/Core/Textures/ui/misc/barinstantmarker.png diff --git a/textures/ui/misc/barinstantmarkerrotated.png b/Mods/Core/Textures/ui/misc/barinstantmarkerrotated.png similarity index 100% rename from textures/ui/misc/barinstantmarkerrotated.png rename to Mods/Core/Textures/ui/misc/barinstantmarkerrotated.png diff --git a/textures/ui/misc/compass.png b/Mods/Core/Textures/ui/misc/compass.png similarity index 100% rename from textures/ui/misc/compass.png rename to Mods/Core/Textures/ui/misc/compass.png diff --git a/textures/ui/misc/deadcolonist.png b/Mods/Core/Textures/ui/misc/deadcolonist.png similarity index 100% rename from textures/ui/misc/deadcolonist.png rename to Mods/Core/Textures/ui/misc/deadcolonist.png diff --git a/textures/ui/misc/flash.png b/Mods/Core/Textures/ui/misc/flash.png similarity index 100% rename from textures/ui/misc/flash.png rename to Mods/Core/Textures/ui/misc/flash.png diff --git a/textures/ui/misc/screencornershadow.png b/Mods/Core/Textures/ui/misc/screencornershadow.png similarity index 100% rename from textures/ui/misc/screencornershadow.png rename to Mods/Core/Textures/ui/misc/screencornershadow.png diff --git a/textures/ui/misc/worldrouteplanner.png b/Mods/Core/Textures/ui/misc/worldrouteplanner.png similarity index 100% rename from textures/ui/misc/worldrouteplanner.png rename to Mods/Core/Textures/ui/misc/worldrouteplanner.png diff --git a/textures/ui/overlays/NeedsPower.png b/Mods/Core/Textures/ui/overlays/NeedsPower.png similarity index 100% rename from textures/ui/overlays/NeedsPower.png rename to Mods/Core/Textures/ui/overlays/NeedsPower.png diff --git a/textures/ui/overlays/arrow.png b/Mods/Core/Textures/ui/overlays/arrow.png similarity index 100% rename from textures/ui/overlays/arrow.png rename to Mods/Core/Textures/ui/overlays/arrow.png diff --git a/textures/ui/overlays/brokendown.png b/Mods/Core/Textures/ui/overlays/brokendown.png similarity index 100% rename from textures/ui/overlays/brokendown.png rename to Mods/Core/Textures/ui/overlays/brokendown.png diff --git a/textures/ui/overlays/designatedgenerictex.png b/Mods/Core/Textures/ui/overlays/designatedgenerictex.png similarity index 100% rename from textures/ui/overlays/designatedgenerictex.png rename to Mods/Core/Textures/ui/overlays/designatedgenerictex.png diff --git a/textures/ui/overlays/draghighlightcell.png b/Mods/Core/Textures/ui/overlays/draghighlightcell.png similarity index 100% rename from textures/ui/overlays/draghighlightcell.png rename to Mods/Core/Textures/ui/overlays/draghighlightcell.png diff --git a/textures/ui/overlays/fuelingport.png b/Mods/Core/Textures/ui/overlays/fuelingport.png similarity index 100% rename from textures/ui/overlays/fuelingport.png rename to Mods/Core/Textures/ui/overlays/fuelingport.png diff --git a/textures/ui/overlays/graytextbg.png b/Mods/Core/Textures/ui/overlays/graytextbg.png similarity index 100% rename from textures/ui/overlays/graytextbg.png rename to Mods/Core/Textures/ui/overlays/graytextbg.png diff --git a/textures/ui/overlays/interactioncell.png b/Mods/Core/Textures/ui/overlays/interactioncell.png similarity index 100% rename from textures/ui/overlays/interactioncell.png rename to Mods/Core/Textures/ui/overlays/interactioncell.png diff --git a/textures/ui/overlays/launchablemouseattachment.png b/Mods/Core/Textures/ui/overlays/launchablemouseattachment.png similarity index 100% rename from textures/ui/overlays/launchablemouseattachment.png rename to Mods/Core/Textures/ui/overlays/launchablemouseattachment.png diff --git a/textures/ui/overlays/locked.png b/Mods/Core/Textures/ui/overlays/locked.png similarity index 100% rename from textures/ui/overlays/locked.png rename to Mods/Core/Textures/ui/overlays/locked.png diff --git a/textures/ui/overlays/mouseoverbrackettex.png b/Mods/Core/Textures/ui/overlays/mouseoverbrackettex.png similarity index 100% rename from textures/ui/overlays/mouseoverbrackettex.png rename to Mods/Core/Textures/ui/overlays/mouseoverbrackettex.png diff --git a/textures/ui/overlays/onesidedline.png b/Mods/Core/Textures/ui/overlays/onesidedline.png similarity index 100% rename from textures/ui/overlays/onesidedline.png rename to Mods/Core/Textures/ui/overlays/onesidedline.png diff --git a/textures/ui/overlays/outoffuel.png b/Mods/Core/Textures/ui/overlays/outoffuel.png similarity index 100% rename from textures/ui/overlays/outoffuel.png rename to Mods/Core/Textures/ui/overlays/outoffuel.png diff --git a/textures/ui/overlays/poweroff.png b/Mods/Core/Textures/ui/overlays/poweroff.png similarity index 100% rename from textures/ui/overlays/poweroff.png rename to Mods/Core/Textures/ui/overlays/poweroff.png diff --git a/textures/ui/overlays/questionmark.png b/Mods/Core/Textures/ui/overlays/questionmark.png similarity index 100% rename from textures/ui/overlays/questionmark.png rename to Mods/Core/Textures/ui/overlays/questionmark.png diff --git a/textures/ui/overlays/reserveddestination.png b/Mods/Core/Textures/ui/overlays/reserveddestination.png similarity index 100% rename from textures/ui/overlays/reserveddestination.png rename to Mods/Core/Textures/ui/overlays/reserveddestination.png diff --git a/textures/ui/overlays/reserveddestinationselection.png b/Mods/Core/Textures/ui/overlays/reserveddestinationselection.png similarity index 100% rename from textures/ui/overlays/reserveddestinationselection.png rename to Mods/Core/Textures/ui/overlays/reserveddestinationselection.png diff --git a/textures/ui/overlays/reservedforwork.png b/Mods/Core/Textures/ui/overlays/reservedforwork.png similarity index 100% rename from textures/ui/overlays/reservedforwork.png rename to Mods/Core/Textures/ui/overlays/reservedforwork.png diff --git a/textures/ui/overlays/selectionbracket.png b/Mods/Core/Textures/ui/overlays/selectionbracket.png similarity index 100% rename from textures/ui/overlays/selectionbracket.png rename to Mods/Core/Textures/ui/overlays/selectionbracket.png diff --git a/textures/ui/overlays/selectionbracketgui.png b/Mods/Core/Textures/ui/overlays/selectionbracketgui.png similarity index 100% rename from textures/ui/overlays/selectionbracketgui.png rename to Mods/Core/Textures/ui/overlays/selectionbracketgui.png diff --git a/textures/ui/overlays/squadflag.png b/Mods/Core/Textures/ui/overlays/squadflag.png similarity index 100% rename from textures/ui/overlays/squadflag.png rename to Mods/Core/Textures/ui/overlays/squadflag.png diff --git a/textures/ui/overlays/targethighlight_side.png b/Mods/Core/Textures/ui/overlays/targethighlight_side.png similarity index 100% rename from textures/ui/overlays/targethighlight_side.png rename to Mods/Core/Textures/ui/overlays/targethighlight_side.png diff --git a/textures/ui/overlays/targethighlight_square.png b/Mods/Core/Textures/ui/overlays/targethighlight_square.png similarity index 100% rename from textures/ui/overlays/targethighlight_square.png rename to Mods/Core/Textures/ui/overlays/targethighlight_square.png diff --git a/textures/ui/overlays/thingline.png b/Mods/Core/Textures/ui/overlays/thingline.png similarity index 100% rename from textures/ui/overlays/thingline.png rename to Mods/Core/Textures/ui/overlays/thingline.png diff --git a/textures/ui/overlays/waypointmouseattachment.png b/Mods/Core/Textures/ui/overlays/waypointmouseattachment.png similarity index 100% rename from textures/ui/overlays/waypointmouseattachment.png rename to Mods/Core/Textures/ui/overlays/waypointmouseattachment.png diff --git a/textures/ui/timecontrols/timespeedbutton_fast.png b/Mods/Core/Textures/ui/timecontrols/timespeedbutton_fast.png similarity index 100% rename from textures/ui/timecontrols/timespeedbutton_fast.png rename to Mods/Core/Textures/ui/timecontrols/timespeedbutton_fast.png diff --git a/textures/ui/timecontrols/timespeedbutton_normal.png b/Mods/Core/Textures/ui/timecontrols/timespeedbutton_normal.png similarity index 100% rename from textures/ui/timecontrols/timespeedbutton_normal.png rename to Mods/Core/Textures/ui/timecontrols/timespeedbutton_normal.png diff --git a/textures/ui/timecontrols/timespeedbutton_pause.png b/Mods/Core/Textures/ui/timecontrols/timespeedbutton_pause.png similarity index 100% rename from textures/ui/timecontrols/timespeedbutton_pause.png rename to Mods/Core/Textures/ui/timecontrols/timespeedbutton_pause.png diff --git a/textures/ui/timecontrols/timespeedbutton_superfast.png b/Mods/Core/Textures/ui/timecontrols/timespeedbutton_superfast.png similarity index 100% rename from textures/ui/timecontrols/timespeedbutton_superfast.png rename to Mods/Core/Textures/ui/timecontrols/timespeedbutton_superfast.png diff --git a/textures/ui/widgets/arrowleft.png b/Mods/Core/Textures/ui/widgets/arrowleft.png similarity index 100% rename from textures/ui/widgets/arrowleft.png rename to Mods/Core/Textures/ui/widgets/arrowleft.png diff --git a/textures/ui/widgets/arrowright.png b/Mods/Core/Textures/ui/widgets/arrowright.png similarity index 100% rename from textures/ui/widgets/arrowright.png rename to Mods/Core/Textures/ui/widgets/arrowright.png diff --git a/textures/ui/widgets/baremptyhor.png b/Mods/Core/Textures/ui/widgets/baremptyhor.png similarity index 100% rename from textures/ui/widgets/baremptyhor.png rename to Mods/Core/Textures/ui/widgets/baremptyhor.png diff --git a/textures/ui/widgets/barfullhor.png b/Mods/Core/Textures/ui/widgets/barfullhor.png similarity index 100% rename from textures/ui/widgets/barfullhor.png rename to Mods/Core/Textures/ui/widgets/barfullhor.png diff --git a/textures/ui/widgets/buttonbg.png b/Mods/Core/Textures/ui/widgets/buttonbg.png similarity index 100% rename from textures/ui/widgets/buttonbg.png rename to Mods/Core/Textures/ui/widgets/buttonbg.png diff --git a/textures/ui/widgets/buttonbgclick.png b/Mods/Core/Textures/ui/widgets/buttonbgclick.png similarity index 100% rename from textures/ui/widgets/buttonbgclick.png rename to Mods/Core/Textures/ui/widgets/buttonbgclick.png diff --git a/textures/ui/widgets/buttonbgmouseover.png b/Mods/Core/Textures/ui/widgets/buttonbgmouseover.png similarity index 100% rename from textures/ui/widgets/buttonbgmouseover.png rename to Mods/Core/Textures/ui/widgets/buttonbgmouseover.png diff --git a/textures/ui/widgets/buttonsubtleatlas.png b/Mods/Core/Textures/ui/widgets/buttonsubtleatlas.png similarity index 100% rename from textures/ui/widgets/buttonsubtleatlas.png rename to Mods/Core/Textures/ui/widgets/buttonsubtleatlas.png diff --git a/textures/ui/widgets/checkoff.png b/Mods/Core/Textures/ui/widgets/checkoff.png similarity index 100% rename from textures/ui/widgets/checkoff.png rename to Mods/Core/Textures/ui/widgets/checkoff.png diff --git a/textures/ui/widgets/checkon.png b/Mods/Core/Textures/ui/widgets/checkon.png similarity index 100% rename from textures/ui/widgets/checkon.png rename to Mods/Core/Textures/ui/widgets/checkon.png diff --git a/textures/ui/widgets/checkpartial.png b/Mods/Core/Textures/ui/widgets/checkpartial.png similarity index 100% rename from textures/ui/widgets/checkpartial.png rename to Mods/Core/Textures/ui/widgets/checkpartial.png diff --git a/textures/ui/widgets/closex.png b/Mods/Core/Textures/ui/widgets/closex.png similarity index 100% rename from textures/ui/widgets/closex.png rename to Mods/Core/Textures/ui/widgets/closex.png diff --git a/textures/ui/widgets/closexsmall.png b/Mods/Core/Textures/ui/widgets/closexsmall.png similarity index 100% rename from textures/ui/widgets/closexsmall.png rename to Mods/Core/Textures/ui/widgets/closexsmall.png diff --git a/textures/ui/widgets/desbutbg.png b/Mods/Core/Textures/ui/widgets/desbutbg.png similarity index 100% rename from textures/ui/widgets/desbutbg.png rename to Mods/Core/Textures/ui/widgets/desbutbg.png diff --git a/textures/ui/widgets/desbutbg2.png b/Mods/Core/Textures/ui/widgets/desbutbg2.png similarity index 100% rename from textures/ui/widgets/desbutbg2.png rename to Mods/Core/Textures/ui/widgets/desbutbg2.png diff --git a/textures/ui/widgets/dev/curvepoint.png b/Mods/Core/Textures/ui/widgets/dev/curvepoint.png similarity index 100% rename from textures/ui/widgets/dev/curvepoint.png rename to Mods/Core/Textures/ui/widgets/dev/curvepoint.png diff --git a/textures/ui/widgets/dropshadow.png b/Mods/Core/Textures/ui/widgets/dropshadow.png similarity index 100% rename from textures/ui/widgets/dropshadow.png rename to Mods/Core/Textures/ui/widgets/dropshadow.png diff --git a/textures/ui/widgets/fillchangearrowleft.png b/Mods/Core/Textures/ui/widgets/fillchangearrowleft.png similarity index 100% rename from textures/ui/widgets/fillchangearrowleft.png rename to Mods/Core/Textures/ui/widgets/fillchangearrowleft.png diff --git a/textures/ui/widgets/fillchangearrowright.png b/Mods/Core/Textures/ui/widgets/fillchangearrowright.png similarity index 100% rename from textures/ui/widgets/fillchangearrowright.png rename to Mods/Core/Textures/ui/widgets/fillchangearrowright.png diff --git a/textures/ui/widgets/floatmenuoptionbg.png b/Mods/Core/Textures/ui/widgets/floatmenuoptionbg.png similarity index 100% rename from textures/ui/widgets/floatmenuoptionbg.png rename to Mods/Core/Textures/ui/widgets/floatmenuoptionbg.png diff --git a/textures/ui/widgets/nextarrow.png b/Mods/Core/Textures/ui/widgets/nextarrow.png similarity index 100% rename from textures/ui/widgets/nextarrow.png rename to Mods/Core/Textures/ui/widgets/nextarrow.png diff --git a/textures/ui/widgets/radiobutoff.png b/Mods/Core/Textures/ui/widgets/radiobutoff.png similarity index 100% rename from textures/ui/widgets/radiobutoff.png rename to Mods/Core/Textures/ui/widgets/radiobutoff.png diff --git a/textures/ui/widgets/radiobuton.png b/Mods/Core/Textures/ui/widgets/radiobuton.png similarity index 100% rename from textures/ui/widgets/radiobuton.png rename to Mods/Core/Textures/ui/widgets/radiobuton.png diff --git a/textures/ui/widgets/rangeslider.png b/Mods/Core/Textures/ui/widgets/rangeslider.png similarity index 100% rename from textures/ui/widgets/rangeslider.png rename to Mods/Core/Textures/ui/widgets/rangeslider.png diff --git a/textures/ui/widgets/rotleft.png b/Mods/Core/Textures/ui/widgets/rotleft.png similarity index 100% rename from textures/ui/widgets/rotleft.png rename to Mods/Core/Textures/ui/widgets/rotleft.png diff --git a/textures/ui/widgets/rotright.png b/Mods/Core/Textures/ui/widgets/rotright.png similarity index 100% rename from textures/ui/widgets/rotright.png rename to Mods/Core/Textures/ui/widgets/rotright.png diff --git a/textures/ui/widgets/tabatlas.png b/Mods/Core/Textures/ui/widgets/tabatlas.png similarity index 100% rename from textures/ui/widgets/tabatlas.png rename to Mods/Core/Textures/ui/widgets/tabatlas.png diff --git a/textures/ui/widgets/textbgblack.png b/Mods/Core/Textures/ui/widgets/textbgblack.png similarity index 100% rename from textures/ui/widgets/textbgblack.png rename to Mods/Core/Textures/ui/widgets/textbgblack.png diff --git a/textures/ui/widgets/tooltipbg.png b/Mods/Core/Textures/ui/widgets/tooltipbg.png similarity index 100% rename from textures/ui/widgets/tooltipbg.png rename to Mods/Core/Textures/ui/widgets/tooltipbg.png diff --git a/textures/ui/widgets/tradearrow.png b/Mods/Core/Textures/ui/widgets/tradearrow.png similarity index 100% rename from textures/ui/widgets/tradearrow.png rename to Mods/Core/Textures/ui/widgets/tradearrow.png diff --git a/textures/ui/widgets/tutorhighlightatlas.png b/Mods/Core/Textures/ui/widgets/tutorhighlightatlas.png similarity index 100% rename from textures/ui/widgets/tutorhighlightatlas.png rename to Mods/Core/Textures/ui/widgets/tutorhighlightatlas.png diff --git a/textures/ui/widgets/winexpandwidget.png b/Mods/Core/Textures/ui/widgets/winexpandwidget.png similarity index 100% rename from textures/ui/widgets/winexpandwidget.png rename to Mods/Core/Textures/ui/widgets/winexpandwidget.png diff --git a/textures/ui/widgets/workboxbg_awful.png b/Mods/Core/Textures/ui/widgets/workboxbg_awful.png similarity index 100% rename from textures/ui/widgets/workboxbg_awful.png rename to Mods/Core/Textures/ui/widgets/workboxbg_awful.png diff --git a/textures/ui/widgets/workboxbg_bad.png b/Mods/Core/Textures/ui/widgets/workboxbg_bad.png similarity index 100% rename from textures/ui/widgets/workboxbg_bad.png rename to Mods/Core/Textures/ui/widgets/workboxbg_bad.png diff --git a/textures/ui/widgets/workboxbg_excellent.png b/Mods/Core/Textures/ui/widgets/workboxbg_excellent.png similarity index 100% rename from textures/ui/widgets/workboxbg_excellent.png rename to Mods/Core/Textures/ui/widgets/workboxbg_excellent.png diff --git a/textures/ui/widgets/workboxbg_mid.png b/Mods/Core/Textures/ui/widgets/workboxbg_mid.png similarity index 100% rename from textures/ui/widgets/workboxbg_mid.png rename to Mods/Core/Textures/ui/widgets/workboxbg_mid.png diff --git a/textures/ui/widgets/workboxcheck.png b/Mods/Core/Textures/ui/widgets/workboxcheck.png similarity index 100% rename from textures/ui/widgets/workboxcheck.png rename to Mods/Core/Textures/ui/widgets/workboxcheck.png diff --git a/textures/weather/lightningbolt.png b/Mods/Core/Textures/weather/lightningbolt.png similarity index 100% rename from textures/weather/lightningbolt.png rename to Mods/Core/Textures/weather/lightningbolt.png diff --git a/textures/weather/overlays/fogworld.png b/Mods/Core/Textures/weather/overlays/fogworld.png similarity index 100% rename from textures/weather/overlays/fogworld.png rename to Mods/Core/Textures/weather/overlays/fogworld.png diff --git a/textures/weather/overlays/rainworldoverlay.png b/Mods/Core/Textures/weather/overlays/rainworldoverlay.png similarity index 100% rename from textures/weather/overlays/rainworldoverlay.png rename to Mods/Core/Textures/weather/overlays/rainworldoverlay.png diff --git a/textures/weather/overlays/snowworldoverlay.png b/Mods/Core/Textures/weather/overlays/snowworldoverlay.png similarity index 100% rename from textures/weather/overlays/snowworldoverlay.png rename to Mods/Core/Textures/weather/overlays/snowworldoverlay.png diff --git a/textures/world/biomes/aridshrubland.png b/Mods/Core/Textures/world/biomes/aridshrubland.png similarity index 100% rename from textures/world/biomes/aridshrubland.png rename to Mods/Core/Textures/world/biomes/aridshrubland.png diff --git a/textures/world/biomes/borealforest.png b/Mods/Core/Textures/world/biomes/borealforest.png similarity index 100% rename from textures/world/biomes/borealforest.png rename to Mods/Core/Textures/world/biomes/borealforest.png diff --git a/textures/world/biomes/desert.png b/Mods/Core/Textures/world/biomes/desert.png similarity index 100% rename from textures/world/biomes/desert.png rename to Mods/Core/Textures/world/biomes/desert.png diff --git a/textures/world/biomes/extremedesert.png b/Mods/Core/Textures/world/biomes/extremedesert.png similarity index 100% rename from textures/world/biomes/extremedesert.png rename to Mods/Core/Textures/world/biomes/extremedesert.png diff --git a/textures/world/biomes/icesheet.png b/Mods/Core/Textures/world/biomes/icesheet.png similarity index 100% rename from textures/world/biomes/icesheet.png rename to Mods/Core/Textures/world/biomes/icesheet.png diff --git a/textures/world/biomes/icesheetocean.png b/Mods/Core/Textures/world/biomes/icesheetocean.png similarity index 100% rename from textures/world/biomes/icesheetocean.png rename to Mods/Core/Textures/world/biomes/icesheetocean.png diff --git a/textures/world/biomes/ocean.png b/Mods/Core/Textures/world/biomes/ocean.png similarity index 100% rename from textures/world/biomes/ocean.png rename to Mods/Core/Textures/world/biomes/ocean.png diff --git a/textures/world/biomes/temperateforest.png b/Mods/Core/Textures/world/biomes/temperateforest.png similarity index 100% rename from textures/world/biomes/temperateforest.png rename to Mods/Core/Textures/world/biomes/temperateforest.png diff --git a/textures/world/biomes/tropicalrainforest.png b/Mods/Core/Textures/world/biomes/tropicalrainforest.png similarity index 100% rename from textures/world/biomes/tropicalrainforest.png rename to Mods/Core/Textures/world/biomes/tropicalrainforest.png diff --git a/textures/world/biomes/tundra.png b/Mods/Core/Textures/world/biomes/tundra.png similarity index 100% rename from textures/world/biomes/tundra.png rename to Mods/Core/Textures/world/biomes/tundra.png diff --git a/textures/world/currentmaptile.png b/Mods/Core/Textures/world/currentmaptile.png similarity index 100% rename from textures/world/currentmaptile.png rename to Mods/Core/Textures/world/currentmaptile.png diff --git a/textures/world/hills/impassable.png b/Mods/Core/Textures/world/hills/impassable.png similarity index 100% rename from textures/world/hills/impassable.png rename to Mods/Core/Textures/world/hills/impassable.png diff --git a/textures/world/hills/largehills.png b/Mods/Core/Textures/world/hills/largehills.png similarity index 100% rename from textures/world/hills/largehills.png rename to Mods/Core/Textures/world/hills/largehills.png diff --git a/textures/world/hills/mountains.png b/Mods/Core/Textures/world/hills/mountains.png similarity index 100% rename from textures/world/hills/mountains.png rename to Mods/Core/Textures/world/hills/mountains.png diff --git a/textures/world/hills/smallhills.png b/Mods/Core/Textures/world/hills/smallhills.png similarity index 100% rename from textures/world/hills/smallhills.png rename to Mods/Core/Textures/world/hills/smallhills.png diff --git a/textures/world/mousetile.png b/Mods/Core/Textures/world/mousetile.png similarity index 100% rename from textures/world/mousetile.png rename to Mods/Core/Textures/world/mousetile.png diff --git a/textures/world/selectedtile.png b/Mods/Core/Textures/world/selectedtile.png similarity index 100% rename from textures/world/selectedtile.png rename to Mods/Core/Textures/world/selectedtile.png diff --git a/textures/world/stars.png b/Mods/Core/Textures/world/stars.png similarity index 100% rename from textures/world/stars.png rename to Mods/Core/Textures/world/stars.png diff --git a/textures/world/worldmacro.png b/Mods/Core/Textures/world/worldmacro.png similarity index 100% rename from textures/world/worldmacro.png rename to Mods/Core/Textures/world/worldmacro.png diff --git a/textures/world/worldobjects/ambush.png b/Mods/Core/Textures/world/worldobjects/ambush.png similarity index 100% rename from textures/world/worldobjects/ambush.png rename to Mods/Core/Textures/world/worldobjects/ambush.png diff --git a/textures/world/worldobjects/caravan.png b/Mods/Core/Textures/world/worldobjects/caravan.png similarity index 100% rename from textures/world/worldobjects/caravan.png rename to Mods/Core/Textures/world/worldobjects/caravan.png diff --git a/textures/world/worldobjects/defaultfactionbase.png b/Mods/Core/Textures/world/worldobjects/defaultfactionbase.png similarity index 100% rename from textures/world/worldobjects/defaultfactionbase.png rename to Mods/Core/Textures/world/worldobjects/defaultfactionbase.png diff --git a/textures/world/worldobjects/expanding/CannibalPirate.png b/Mods/Core/Textures/world/worldobjects/expanding/CannibalPirate.png similarity index 100% rename from textures/world/worldobjects/expanding/CannibalPirate.png rename to Mods/Core/Textures/world/worldobjects/expanding/CannibalPirate.png diff --git a/textures/world/worldobjects/expanding/CannibalTribe.png b/Mods/Core/Textures/world/worldobjects/expanding/CannibalTribe.png similarity index 100% rename from textures/world/worldobjects/expanding/CannibalTribe.png rename to Mods/Core/Textures/world/worldobjects/expanding/CannibalTribe.png diff --git a/textures/world/worldobjects/expanding/FierceNeanderthalTribe.png b/Mods/Core/Textures/world/worldobjects/expanding/FierceNeanderthalTribe.png similarity index 100% rename from textures/world/worldobjects/expanding/FierceNeanderthalTribe.png rename to Mods/Core/Textures/world/worldobjects/expanding/FierceNeanderthalTribe.png diff --git a/textures/world/worldobjects/expanding/Insects.png b/Mods/Core/Textures/world/worldobjects/expanding/Insects.png similarity index 100% rename from textures/world/worldobjects/expanding/Insects.png rename to Mods/Core/Textures/world/worldobjects/expanding/Insects.png diff --git a/textures/world/worldobjects/expanding/Mechanoids.png b/Mods/Core/Textures/world/worldobjects/expanding/Mechanoids.png similarity index 100% rename from textures/world/worldobjects/expanding/Mechanoids.png rename to Mods/Core/Textures/world/worldobjects/expanding/Mechanoids.png diff --git a/textures/world/worldobjects/expanding/NudistTribe.png b/Mods/Core/Textures/world/worldobjects/expanding/NudistTribe.png similarity index 100% rename from textures/world/worldobjects/expanding/NudistTribe.png rename to Mods/Core/Textures/world/worldobjects/expanding/NudistTribe.png diff --git a/textures/world/worldobjects/expanding/PirateOutpost.png b/Mods/Core/Textures/world/worldobjects/expanding/PirateOutpost.png similarity index 100% rename from textures/world/worldobjects/expanding/PirateOutpost.png rename to Mods/Core/Textures/world/worldobjects/expanding/PirateOutpost.png diff --git a/textures/world/worldobjects/expanding/RoughPigUnion.png b/Mods/Core/Textures/world/worldobjects/expanding/RoughPigUnion.png similarity index 100% rename from textures/world/worldobjects/expanding/RoughPigUnion.png rename to Mods/Core/Textures/world/worldobjects/expanding/RoughPigUnion.png diff --git a/textures/world/worldobjects/expanding/SavageImpidTribe.png b/Mods/Core/Textures/world/worldobjects/expanding/SavageImpidTribe.png similarity index 100% rename from textures/world/worldobjects/expanding/SavageImpidTribe.png rename to Mods/Core/Textures/world/worldobjects/expanding/SavageImpidTribe.png diff --git a/textures/world/worldobjects/expanding/Town.png b/Mods/Core/Textures/world/worldobjects/expanding/Town.png similarity index 100% rename from textures/world/worldobjects/expanding/Town.png rename to Mods/Core/Textures/world/worldobjects/expanding/Town.png diff --git a/textures/world/worldobjects/expanding/TownRough.png b/Mods/Core/Textures/world/worldobjects/expanding/TownRough.png similarity index 100% rename from textures/world/worldobjects/expanding/TownRough.png rename to Mods/Core/Textures/world/worldobjects/expanding/TownRough.png diff --git a/textures/world/worldobjects/expanding/Village.png b/Mods/Core/Textures/world/worldobjects/expanding/Village.png similarity index 100% rename from textures/world/worldobjects/expanding/Village.png rename to Mods/Core/Textures/world/worldobjects/expanding/Village.png diff --git a/textures/world/worldobjects/expanding/VillageRough.png b/Mods/Core/Textures/world/worldobjects/expanding/VillageRough.png similarity index 100% rename from textures/world/worldobjects/expanding/VillageRough.png rename to Mods/Core/Textures/world/worldobjects/expanding/VillageRough.png diff --git a/textures/world/worldobjects/expanding/VillageSavage.png b/Mods/Core/Textures/world/worldobjects/expanding/VillageSavage.png similarity index 100% rename from textures/world/worldobjects/expanding/VillageSavage.png rename to Mods/Core/Textures/world/worldobjects/expanding/VillageSavage.png diff --git a/textures/world/worldobjects/expanding/WasterPirates.png b/Mods/Core/Textures/world/worldobjects/expanding/WasterPirates.png similarity index 100% rename from textures/world/worldobjects/expanding/WasterPirates.png rename to Mods/Core/Textures/world/worldobjects/expanding/WasterPirates.png diff --git a/textures/world/worldobjects/expanding/YttakinPirates.png b/Mods/Core/Textures/world/worldobjects/expanding/YttakinPirates.png similarity index 100% rename from textures/world/worldobjects/expanding/YttakinPirates.png rename to Mods/Core/Textures/world/worldobjects/expanding/YttakinPirates.png diff --git a/textures/world/worldobjects/expanding/ambush.png b/Mods/Core/Textures/world/worldobjects/expanding/ambush.png similarity index 100% rename from textures/world/worldobjects/expanding/ambush.png rename to Mods/Core/Textures/world/worldobjects/expanding/ambush.png diff --git a/textures/world/worldobjects/expanding/caravan.png b/Mods/Core/Textures/world/worldobjects/expanding/caravan.png similarity index 100% rename from textures/world/worldobjects/expanding/caravan.png rename to Mods/Core/Textures/world/worldobjects/expanding/caravan.png diff --git a/textures/world/worldobjects/expanding/destroyedfactionbase.png b/Mods/Core/Textures/world/worldobjects/expanding/destroyedfactionbase.png similarity index 100% rename from textures/world/worldobjects/expanding/destroyedfactionbase.png rename to Mods/Core/Textures/world/worldobjects/expanding/destroyedfactionbase.png diff --git a/textures/world/worldobjects/expanding/journeydestination.png b/Mods/Core/Textures/world/worldobjects/expanding/journeydestination.png similarity index 100% rename from textures/world/worldobjects/expanding/journeydestination.png rename to Mods/Core/Textures/world/worldobjects/expanding/journeydestination.png diff --git a/textures/world/worldobjects/expanding/routeplannerwaypoint.png b/Mods/Core/Textures/world/worldobjects/expanding/routeplannerwaypoint.png similarity index 100% rename from textures/world/worldobjects/expanding/routeplannerwaypoint.png rename to Mods/Core/Textures/world/worldobjects/expanding/routeplannerwaypoint.png diff --git a/textures/world/worldobjects/expanding/sites/itemstash.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/itemstash.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/itemstash.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/itemstash.png diff --git a/textures/world/worldobjects/expanding/sites/manhunters.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/manhunters.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/manhunters.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/manhunters.png diff --git a/textures/world/worldobjects/expanding/sites/nothing.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/nothing.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/nothing.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/nothing.png diff --git a/textures/world/worldobjects/expanding/sites/outpost.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/outpost.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/outpost.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/outpost.png diff --git a/textures/world/worldobjects/expanding/sites/preciouslump.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/preciouslump.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/preciouslump.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/preciouslump.png diff --git a/textures/world/worldobjects/expanding/sites/turrets.png b/Mods/Core/Textures/world/worldobjects/expanding/sites/turrets.png similarity index 100% rename from textures/world/worldobjects/expanding/sites/turrets.png rename to Mods/Core/Textures/world/worldobjects/expanding/sites/turrets.png diff --git a/textures/world/worldobjects/expanding/travelingtransportpods.png b/Mods/Core/Textures/world/worldobjects/expanding/travelingtransportpods.png similarity index 100% rename from textures/world/worldobjects/expanding/travelingtransportpods.png rename to Mods/Core/Textures/world/worldobjects/expanding/travelingtransportpods.png diff --git a/textures/world/worldobjects/journeydestination.png b/Mods/Core/Textures/world/worldobjects/journeydestination.png similarity index 100% rename from textures/world/worldobjects/journeydestination.png rename to Mods/Core/Textures/world/worldobjects/journeydestination.png diff --git a/textures/world/worldobjects/routeplannerwaypoint.png b/Mods/Core/Textures/world/worldobjects/routeplannerwaypoint.png similarity index 100% rename from textures/world/worldobjects/routeplannerwaypoint.png rename to Mods/Core/Textures/world/worldobjects/routeplannerwaypoint.png diff --git a/textures/world/worldobjects/sites/genericsite.png b/Mods/Core/Textures/world/worldobjects/sites/genericsite.png similarity index 100% rename from textures/world/worldobjects/sites/genericsite.png rename to Mods/Core/Textures/world/worldobjects/sites/genericsite.png diff --git a/textures/world/worldobjects/sites/outpost.png b/Mods/Core/Textures/world/worldobjects/sites/outpost.png similarity index 100% rename from textures/world/worldobjects/sites/outpost.png rename to Mods/Core/Textures/world/worldobjects/sites/outpost.png diff --git a/textures/world/worldobjects/travelingtransportpods.png b/Mods/Core/Textures/world/worldobjects/travelingtransportpods.png similarity index 100% rename from textures/world/worldobjects/travelingtransportpods.png rename to Mods/Core/Textures/world/worldobjects/travelingtransportpods.png diff --git a/textures/world/worldobjects/tribalfactionbase.png b/Mods/Core/Textures/world/worldobjects/tribalfactionbase.png similarity index 100% rename from textures/world/worldobjects/tribalfactionbase.png rename to Mods/Core/Textures/world/worldobjects/tribalfactionbase.png diff --git a/docs/mods.md b/docs/mods.md new file mode 100644 index 0000000..1239330 --- /dev/null +++ b/docs/mods.md @@ -0,0 +1,89 @@ +# Моды и локализация + +LittleSim устроен по принципу RimWorld: **вся игра — это мод**. Папка `Mods/Core` +содержит весь контент игры (дефы, текстуры, языки), а движковый модуль +`MrGameEng.Mods` умеет загружать сколько угодно таких папок. Любой мод, загруженный +после Core, может переопределить его данные — деф, текстуру или строку перевода. + +## Структура мода + +``` +Mods/<Имя>/ + About/About.json метаданные: id, name, version, dependencies + Defs/**/*.json дефы — данные игровых сущностей + Languages/<код>/*.json строки локализации (ru, en, …) + Textures/** картинки; пути = ключи регионов атласов +``` + +Порядок загрузки детерминирован: зависимости раньше зависимых, при равенстве — по +алфавиту id. Поздний мод **переопределяет** ранние: одноимённый деф заменяется целиком, +одноимённый ключ перевода и текстура по тому же относительному пути — тоже. + +## About.json + +```json +{ + "id": "MyMod", + "name": "Мой мод", + "author": "…", + "version": "1.0", + "description": "…", + "dependencies": ["Core"] +} +``` + +## Дефы + +Каждый файл в `Defs/` — конверт с типом и списком дефов: + +```json +{ + "type": "Pawn", + "defs": [ + { "defName": "BaseAnimal", "abstract": true, "kind": "animal" }, + { "defName": "Bear", "parent": "BaseAnimal", "label": "pawn.bear", + "texture": "things/pawn/animal/bear/Bear_east", "sizeCells": 1.7 } + ] +} +``` + +- `defName` — уникален внутри типа; одноимённый деф позднего мода полностью заменяет + ранний (слияния полей между модами нет — намеренно, для предсказуемости). +- `parent` — поля родителя берутся как основа, свои пишутся поверх; вложенные объекты + и массивы заменяются целиком. Абстрактность не наследуется. +- `abstract: true` — деф служит только родителем и в базу не попадает. +- `label` — ключ локализации (или сырой текст, если перевода нет). +- Комментарии `//` и висячие запятые в JSON допускаются. + +Типы дефов Core: `Terrain` (порог высоты, цвет, поверхность тайла, скаттер растений), +`Plant` (текстура, размер, радиус ствола-препятствия), `Pawn` (текстура, размер, +вид — `being`/`animal`). CLR-классы — `src/LittleSim/Content/GameDefs.cs`; новый тип +дефа = новый класс + `RegisterType` в `GameContent.Load`. + +## Локализация + +`Languages/<код>/*.json` — плоские словари «ключ → строка»: + +```json +{ "hud.world": "LittleSim | сид {0} | население {1} | {2} FPS" } +``` + +Язык по умолчанию — `ru`, fallback на язык по умолчанию, затем на сам ключ (не краш, +а видимый «голый» ключ). Переключение на лету: команда консоли `lang en`. Строки в +коде запрашиваются по ключу через `LanguageManager.Get`/`Format` — никаких строк UI +в коде. + +## Текстуры и атласы + +Текстуры всех модов сливаются в одно дерево (поздний мод побеждает по относительному +пути) и при старте игры собираются в атласы в `Cache/Atlases` (gitignored). +Сборка инкрементальная: без изменений старт мгновенный, чистая пересборка ~20 секунд. +Ключ региона — путь без расширения: `things/plant/treeoak/TreeOakA`; имя атласа — два +первых сегмента пути (`things.plant`). + +## Консоль + +- `mods` — активные моды в порядке загрузки; +- `lang [код]` — показать/переключить язык; +- `defs [тип]` — типы дефов или дефы одного типа; +- `atlas [имя] [фильтр]` — загруженные атласы и их регионы. diff --git a/engine b/engine index 501d81e..5d3c18d 160000 --- a/engine +++ b/engine @@ -1 +1 @@ -Subproject commit 501d81e19f71eae5c223a7e741c9612f156070f8 +Subproject commit 5d3c18de40a3b0c1f5817dfb5ca59c410c83ee78 diff --git a/src/LittleSim/Assets/Atlases/damage.atlas b/src/LittleSim/Assets/Atlases/damage.atlas deleted file mode 100644 index 06b9756..0000000 --- a/src/LittleSim/Assets/Atlases/damage.atlas +++ /dev/null @@ -1,82 +0,0 @@ -{ - "version": 2, - "name": "damage", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "damage.atlas.0.png", - "width": 1024, - "height": 256 - } - ], - "regions": [ - { - "key": "damage/corner", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "damage/edge", - "page": 0, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "damage/scratch1", - "page": 0, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "damage/scratch2", - "page": 0, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "damage/scratch3", - "page": 0, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - } - ], - "sources": [ - { - "key": "damage/corner", - "size": 4566, - "modified": 636301600580000000 - }, - { - "key": "damage/edge", - "size": 4011, - "modified": 636301600580000000 - }, - { - "key": "damage/scratch1", - "size": 10312, - "modified": 636301600580000000 - }, - { - "key": "damage/scratch2", - "size": 8318, - "modified": 636301600580000000 - }, - { - "key": "damage/scratch3", - "size": 5047, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/damage.atlas.0.png b/src/LittleSim/Assets/Atlases/damage.atlas.0.png deleted file mode 100644 index 03ef825..0000000 Binary files a/src/LittleSim/Assets/Atlases/damage.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/designations.atlas b/src/LittleSim/Assets/Atlases/designations.atlas deleted file mode 100644 index 1d3859a..0000000 --- a/src/LittleSim/Assets/Atlases/designations.atlas +++ /dev/null @@ -1,225 +0,0 @@ -{ - "version": 2, - "name": "designations", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "designations.atlas.0.png", - "width": 2048, - "height": 128 - } - ], - "regions": [ - { - "key": "designations/cutplant", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/deconstruct", - "page": 0, - "x": 68, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/flick", - "page": 0, - "x": 134, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/harvestplant", - "page": 0, - "x": 200, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/haul", - "page": 0, - "x": 266, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/hunt", - "page": 0, - "x": 332, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/mine", - "page": 0, - "x": 398, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/open", - "page": 0, - "x": 464, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/plan", - "page": 0, - "x": 530, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/rearmtrap", - "page": 0, - "x": 596, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/removefloor", - "page": 0, - "x": 662, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/slaughter", - "page": 0, - "x": 728, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/smoothfloor", - "page": 0, - "x": 794, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/strip", - "page": 0, - "x": 860, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/tame", - "page": 0, - "x": 926, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "designations/uninstall", - "page": 0, - "x": 992, - "y": 2, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "designations/cutplant", - "size": 1013, - "modified": 636301600580000000 - }, - { - "key": "designations/deconstruct", - "size": 683, - "modified": 636301600580000000 - }, - { - "key": "designations/flick", - "size": 839, - "modified": 636301600580000000 - }, - { - "key": "designations/harvestplant", - "size": 1289, - "modified": 636301600580000000 - }, - { - "key": "designations/haul", - "size": 798, - "modified": 636301600580000000 - }, - { - "key": "designations/hunt", - "size": 633, - "modified": 636301600580000000 - }, - { - "key": "designations/mine", - "size": 520, - "modified": 636301600580000000 - }, - { - "key": "designations/open", - "size": 1357, - "modified": 636301600580000000 - }, - { - "key": "designations/plan", - "size": 354, - "modified": 636301600580000000 - }, - { - "key": "designations/rearmtrap", - "size": 656, - "modified": 636301600580000000 - }, - { - "key": "designations/removefloor", - "size": 1631, - "modified": 636301600580000000 - }, - { - "key": "designations/slaughter", - "size": 1166, - "modified": 636301600580000000 - }, - { - "key": "designations/smoothfloor", - "size": 999, - "modified": 636301600580000000 - }, - { - "key": "designations/strip", - "size": 489, - "modified": 636301600580000000 - }, - { - "key": "designations/tame", - "size": 1153, - "modified": 636301600580000000 - }, - { - "key": "designations/uninstall", - "size": 843, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/designations.atlas.0.png b/src/LittleSim/Assets/Atlases/designations.atlas.0.png deleted file mode 100644 index 204c7f2..0000000 Binary files a/src/LittleSim/Assets/Atlases/designations.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/other.atlas b/src/LittleSim/Assets/Atlases/other.atlas deleted file mode 100644 index cce0164..0000000 --- a/src/LittleSim/Assets/Atlases/other.atlas +++ /dev/null @@ -1,121 +0,0 @@ -{ - "version": 2, - "name": "other", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "other.atlas.0.png", - "width": 2048, - "height": 2048 - } - ], - "regions": [ - { - "key": "other/fogofwar", - "page": 0, - "x": 1034, - "y": 1028, - "w": 128, - "h": 128 - }, - { - "key": "other/fogofwardetail", - "page": 0, - "x": 1542, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "other/noise", - "page": 0, - "x": 2, - "y": 1028, - "w": 256, - "h": 256 - }, - { - "key": "other/ripples", - "page": 0, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "other/roughalphaadd", - "page": 0, - "x": 260, - "y": 1028, - "w": 256, - "h": 256 - }, - { - "key": "other/shieldbubble", - "page": 0, - "x": 518, - "y": 1028, - "w": 256, - "h": 256 - }, - { - "key": "other/snow", - "page": 0, - "x": 1028, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "other/snowmacro", - "page": 0, - "x": 776, - "y": 1028, - "w": 256, - "h": 256 - } - ], - "sources": [ - { - "key": "other/fogofwar", - "size": 8409, - "modified": 636301600580000000 - }, - { - "key": "other/fogofwardetail", - "size": 53979, - "modified": 636301600580000000 - }, - { - "key": "other/noise", - "size": 81839, - "modified": 636301600580000000 - }, - { - "key": "other/ripples", - "size": 852430, - "modified": 636301600580000000 - }, - { - "key": "other/roughalphaadd", - "size": 83067, - "modified": 636301600580000000 - }, - { - "key": "other/shieldbubble", - "size": 41484, - "modified": 636301600580000000 - }, - { - "key": "other/snow", - "size": 207923, - "modified": 636301600580000000 - }, - { - "key": "other/snowmacro", - "size": 38920, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/other.atlas.0.png b/src/LittleSim/Assets/Atlases/other.atlas.0.png deleted file mode 100644 index 7487555..0000000 Binary files a/src/LittleSim/Assets/Atlases/other.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.scatter.atlas b/src/LittleSim/Assets/Atlases/terrain.scatter.atlas deleted file mode 100644 index 57283ae..0000000 --- a/src/LittleSim/Assets/Atlases/terrain.scatter.atlas +++ /dev/null @@ -1,95 +0,0 @@ -{ - "version": 2, - "name": "terrain.scatter", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "terrain.scatter.atlas.0.png", - "width": 2048, - "height": 512 - } - ], - "regions": [ - { - "key": "terrain/scatter/debrisstonea", - "page": 0, - "x": 1034, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/scatter/debrisstoneb", - "page": 0, - "x": 1100, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/scatter/dirtsmeara", - "page": 0, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "terrain/scatter/dirtsmearb", - "page": 0, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "terrain/scatter/graysmeara", - "page": 0, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "terrain/scatter/graysmearb", - "page": 0, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - } - ], - "sources": [ - { - "key": "terrain/scatter/debrisstonea", - "size": 4390, - "modified": 636301600580000000 - }, - { - "key": "terrain/scatter/debrisstoneb", - "size": 2858, - "modified": 636301600580000000 - }, - { - "key": "terrain/scatter/dirtsmeara", - "size": 43558, - "modified": 636301600580000000 - }, - { - "key": "terrain/scatter/dirtsmearb", - "size": 35994, - "modified": 636301600580000000 - }, - { - "key": "terrain/scatter/graysmeara", - "size": 32483, - "modified": 636301600580000000 - }, - { - "key": "terrain/scatter/graysmearb", - "size": 24783, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/terrain.scatter.atlas.0.png b/src/LittleSim/Assets/Atlases/terrain.scatter.atlas.0.png deleted file mode 100644 index 931c327..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.scatter.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas deleted file mode 100644 index 44c0d2d..0000000 --- a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas +++ /dev/null @@ -1,468 +0,0 @@ -{ - "version": 2, - "name": "terrain.surfaces", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "terrain.surfaces.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.1.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.2.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.3.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.4.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.5.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.6.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.7.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.8.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.9.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.10.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.11.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.12.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.13.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.14.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.15.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.16.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.17.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.18.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.19.png", - "width": 2048, - "height": 2048 - }, - { - "file": "terrain.surfaces.atlas.20.png", - "width": 2048, - "height": 2048 - } - ], - "regions": [ - { - "key": "terrain/surfaces/Marsh", - "page": 20, - "x": 1542, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/surfaces/Marsh_bright", - "page": 20, - "x": 1608, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/surfaces/brokenasphalt", - "page": 0, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/burnedcarpet", - "page": 1, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/burnedwoodfloor", - "page": 2, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/carpet", - "page": 3, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/concrete", - "page": 20, - "x": 1028, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "terrain/surfaces/flagstone", - "page": 4, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/genericfloortile", - "page": 5, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/gravel", - "page": 6, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/ice", - "page": 7, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/marshyterrain", - "page": 8, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/mossy", - "page": 9, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/mud", - "page": 10, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/packeddirt", - "page": 11, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/pavedtile", - "page": 12, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/roughhewnrock", - "page": 13, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/roughstone", - "page": 14, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/sand", - "page": 15, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/smoothstone", - "page": 16, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/soil", - "page": 17, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/soilrich", - "page": 18, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/tilestone", - "page": 19, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "terrain/surfaces/underwall", - "page": 20, - "x": 1806, - "y": 2, - "w": 1, - "h": 1 - }, - { - "key": "terrain/surfaces/waterdeepramp", - "page": 20, - "x": 1674, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/surfaces/watershallowramp", - "page": 20, - "x": 1740, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "terrain/surfaces/woodfloor", - "page": 20, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - } - ], - "sources": [ - { - "key": "terrain/surfaces/Marsh", - "size": 1431, - "modified": 638886166560000000 - }, - { - "key": "terrain/surfaces/Marsh_bright", - "size": 1430, - "modified": 638886166560000000 - }, - { - "key": "terrain/surfaces/brokenasphalt", - "size": 1168586, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/burnedcarpet", - "size": 883913, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/burnedwoodfloor", - "size": 894175, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/carpet", - "size": 985510, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/concrete", - "size": 211571, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/flagstone", - "size": 1115707, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/genericfloortile", - "size": 893321, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/gravel", - "size": 1203664, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/ice", - "size": 920970, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/marshyterrain", - "size": 1076851, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/mossy", - "size": 1283358, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/mud", - "size": 1010262, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/packeddirt", - "size": 954310, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/pavedtile", - "size": 873615, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/roughhewnrock", - "size": 1097406, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/roughstone", - "size": 1115007, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/sand", - "size": 1084429, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/smoothstone", - "size": 887611, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/soil", - "size": 1265008, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/soilrich", - "size": 1180364, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/tilestone", - "size": 590145, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/underwall", - "size": 120, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/waterdeepramp", - "size": 505, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/watershallowramp", - "size": 509, - "modified": 636301600580000000 - }, - { - "key": "terrain/surfaces/woodfloor", - "size": 524541, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.0.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.0.png deleted file mode 100644 index d971597..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.1.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.1.png deleted file mode 100644 index 55f2c43..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.10.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.10.png deleted file mode 100644 index 30dd940..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.10.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.11.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.11.png deleted file mode 100644 index 993c013..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.11.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.12.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.12.png deleted file mode 100644 index f798fd0..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.12.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.13.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.13.png deleted file mode 100644 index f8a1c68..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.13.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.14.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.14.png deleted file mode 100644 index 2e5b73a..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.14.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.15.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.15.png deleted file mode 100644 index 0e5d0e2..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.15.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.16.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.16.png deleted file mode 100644 index 0ff3d29..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.16.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.17.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.17.png deleted file mode 100644 index 362d440..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.17.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.18.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.18.png deleted file mode 100644 index dfb0848..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.18.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.19.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.19.png deleted file mode 100644 index f4096fa..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.19.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.2.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.2.png deleted file mode 100644 index e4834c7..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.2.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.20.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.20.png deleted file mode 100644 index 116bc3b..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.20.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.3.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.3.png deleted file mode 100644 index d7bb569..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.3.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.4.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.4.png deleted file mode 100644 index 8caab44..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.4.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.5.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.5.png deleted file mode 100644 index 3ca089d..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.5.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.6.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.6.png deleted file mode 100644 index f5820cf..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.6.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.7.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.7.png deleted file mode 100644 index 6346837..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.7.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.8.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.8.png deleted file mode 100644 index aef57d4..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.8.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.9.png b/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.9.png deleted file mode 100644 index 25a4887..0000000 Binary files a/src/LittleSim/Assets/Atlases/terrain.surfaces.atlas.9.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas b/src/LittleSim/Assets/Atlases/things.building.atlas deleted file mode 100644 index 16b7b57..0000000 --- a/src/LittleSim/Assets/Atlases/things.building.atlas +++ /dev/null @@ -1,11274 +0,0 @@ -{ - "version": 2, - "name": "things.building", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.building.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.1.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.2.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.3.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.4.png", - "width": 1024, - "height": 2048 - }, - { - "file": "things.building.atlas.5.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.6.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.7.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.8.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.9.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.10.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.11.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.12.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.13.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.14.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.15.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.16.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.17.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.18.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.19.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.20.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.21.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.22.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.23.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.24.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.25.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.26.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.27.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.28.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.29.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.30.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.31.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.32.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.33.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.34.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.35.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.36.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.37.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.38.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.39.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.40.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.41.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.42.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.43.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.building.atlas.44.png", - "width": 2048, - "height": 2048 - } - ], - "regions": [ - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstracta", - "page": 37, - "x": 774, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstractb", - "page": 37, - "x": 1032, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstractc", - "page": 37, - "x": 1290, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstracta", - "page": 37, - "x": 1548, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstractb", - "page": 38, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstractc", - "page": 38, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallabstracta", - "page": 44, - "x": 392, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallabstractb", - "page": 44, - "x": 458, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallbusta", - "page": 44, - "x": 524, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/art/snowman", - "page": 44, - "x": 590, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/art/snowman/Snowman_A", - "page": 43, - "x": 1458, - "y": 1651, - "w": 128, - "h": 128 - }, - { - "key": "things/building/art/snowman/Snowman_B", - "page": 43, - "x": 1588, - "y": 1651, - "w": 128, - "h": 128 - }, - { - "key": "things/building/art/snowman/Snowman_C", - "page": 43, - "x": 1718, - "y": 1651, - "w": 128, - "h": 128 - }, - { - "key": "things/building/art/snowman/Snowman_D", - "page": 43, - "x": 1848, - "y": 1651, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingframe/corner", - "page": 43, - "x": 2, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingframe/tile", - "page": 43, - "x": 132, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingframe/underfield", - "page": 43, - "x": 262, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidDarklampStanding", - "page": 43, - "x": 392, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidLampStanding", - "page": 43, - "x": 522, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidTorchLamp", - "page": 43, - "x": 652, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/morbid/stool/MorbidStool_east", - "page": 43, - "x": 782, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/morbid/stool/MorbidStool_north", - "page": 43, - "x": 912, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/rustic/RusticDarklampStanding", - "page": 43, - "x": 1042, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/rustic/RusticLampStanding", - "page": 43, - "x": 1172, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/rustic/RusticTorchLamp", - "page": 43, - "x": 1302, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreDarklampStanding", - "page": 43, - "x": 1432, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreLampStanding", - "page": 43, - "x": 1562, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreTorchLamp", - "page": 43, - "x": 1692, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/techist/TechistDarklampStanding", - "page": 43, - "x": 1822, - "y": 1781, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/techist/TechistLampStanding", - "page": 43, - "x": 2, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/techist/TechistPlantPot", - "page": 43, - "x": 132, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicDarklampStanding", - "page": 43, - "x": 262, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicLampStanding", - "page": 43, - "x": 392, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicTorchLamp", - "page": 43, - "x": 522, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/totemic/stool/TotemicStool_east", - "page": 43, - "x": 652, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/buildingstyles/totemic/stool/TotemicStool_north", - "page": 43, - "x": 782, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/ToyBox", - "page": 43, - "x": 912, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/ToyBox_m", - "page": 43, - "x": 1042, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationA", - "page": 43, - "x": 1172, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationB", - "page": 43, - "x": 1302, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationC", - "page": 43, - "x": 1432, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationD", - "page": 43, - "x": 1562, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationE", - "page": 43, - "x": 1692, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_east", - "page": 38, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_eastm", - "page": 38, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_north", - "page": 38, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_northm", - "page": 38, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_south", - "page": 38, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_southm", - "page": 38, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_east", - "page": 38, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_eastm", - "page": 38, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_north", - "page": 38, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_northm", - "page": 38, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_south", - "page": 38, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/crib/Crib_southm", - "page": 38, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_east", - "page": 31, - "x": 1544, - "y": 1030, - "w": 384, - "h": 512 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_north", - "page": 35, - "x": 644, - "y": 2, - "w": 512, - "h": 384 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_south", - "page": 35, - "x": 1158, - "y": 2, - "w": 512, - "h": 384 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_west", - "page": 32, - "x": 2, - "y": 2, - "w": 384, - "h": 512 - }, - { - "key": "things/building/door/AnimalFlap_MenuIcon", - "page": 43, - "x": 1822, - "y": 1911, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/AnimalFlap_Mover", - "page": 44, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/Autodoor_MenuIcon", - "page": 44, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/Autodoor_Mover", - "page": 44, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/DoorSimple_MenuIcon", - "page": 44, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/DoorSimple_Mover", - "page": 44, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/door/door_blueprint", - "page": 44, - "x": 656, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/exotic/crashedpoisonshippart", - "page": 43, - "x": 388, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/exotic/crashedshippart", - "page": 43, - "x": 646, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/exotic/shipchunk/shipchunka", - "page": 44, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/exotic/shipchunk/shipchunkb", - "page": 44, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/exotic/shipchunk/shipchunkc", - "page": 44, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/Armchair_east", - "page": 27, - "x": 772, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Armchair_north", - "page": 27, - "x": 1286, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Armchair_south", - "page": 27, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/DarkLamp", - "page": 44, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/DiningChair_east", - "page": 44, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/DiningChair_north", - "page": 44, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/DiningChair_south", - "page": 44, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/Drape_east", - "page": 27, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Drape_eastm", - "page": 27, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Drape_south", - "page": 27, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Drape_southm", - "page": 27, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Dresser_east", - "page": 41, - "x": 1808, - "y": 1034, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/Dresser_north", - "page": 43, - "x": 904, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/Dresser_south", - "page": 43, - "x": 1162, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/EndTable_east", - "page": 44, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/EndTable_north", - "page": 44, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/EndTable_south", - "page": 44, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/GrandStele", - "page": 11, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/furniture/GrandThrone_east", - "page": 27, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/GrandThrone_eastm", - "page": 28, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/GrandThrone_north", - "page": 28, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/GrandThrone_northm", - "page": 28, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/GrandThrone_south", - "page": 28, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/GrandThrone_southm", - "page": 28, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LampStanding", - "page": 44, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/LargeSteleA", - "page": 28, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LargeSteleB", - "page": 28, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LargeSteleC", - "page": 28, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LargeSteleD", - "page": 28, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LargeSteleE", - "page": 29, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/LargeSteleF", - "page": 29, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/PlantPot", - "page": 44, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/Stool_east", - "page": 44, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/Stool_north", - "page": 44, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/Throne_east", - "page": 29, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Throne_north", - "page": 29, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/Throne_south", - "page": 29, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/furniture/armchair_back", - "page": 38, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/armchair_front", - "page": 38, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/armchair_side", - "page": 38, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_east", - "page": 38, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_eastm", - "page": 38, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_north", - "page": 38, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_northm", - "page": 38, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_south", - "page": 38, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bed_southm", - "page": 38, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_east", - "page": 38, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_eastm", - "page": 38, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_north", - "page": 38, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_northm", - "page": 38, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_south", - "page": 38, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_southm", - "page": 38, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bedroll_east", - "page": 43, - "x": 1420, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/bed/Bedroll_eastm", - "page": 43, - "x": 1678, - "y": 741, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/bed/Bedroll_north", - "page": 41, - "x": 2, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bedroll_northm", - "page": 41, - "x": 132, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bedroll_south", - "page": 41, - "x": 262, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/bed/Bedroll_southm", - "page": 41, - "x": 392, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_east", - "page": 38, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_eastm", - "page": 38, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_north", - "page": 38, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_northm", - "page": 38, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_south", - "page": 38, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/DoubleBed_southm", - "page": 38, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_east", - "page": 38, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_eastm", - "page": 38, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_north", - "page": 38, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_northm", - "page": 38, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_south", - "page": 38, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/HospitalBed_southm", - "page": 38, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_east", - "page": 38, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_eastm", - "page": 38, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_north", - "page": 38, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_northm", - "page": 38, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_south", - "page": 38, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/RoyalBed_southm", - "page": 38, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_back", - "page": 38, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_backm", - "page": 38, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_front", - "page": 39, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_frontm", - "page": 39, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_side", - "page": 39, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/bed_sidem", - "page": 39, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_back", - "page": 39, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_backm", - "page": 39, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_front", - "page": 39, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_frontm", - "page": 39, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_side", - "page": 39, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/doublebed_sidem", - "page": 39, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_back", - "page": 39, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_backm", - "page": 39, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_front", - "page": 39, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_frontm", - "page": 39, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_side", - "page": 39, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/hospitalbed_sidem", - "page": 39, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_back", - "page": 39, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_backm", - "page": 39, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_front", - "page": 39, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_frontm", - "page": 39, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_side", - "page": 39, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/royalbed_sidem", - "page": 39, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/sleepspot_back", - "page": 39, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/sleepspot_front", - "page": 39, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/bed/sleepspot_side", - "page": 39, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/diningchair_back", - "page": 39, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/diningchair_front", - "page": 39, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/diningchair_side", - "page": 39, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/shelf_back", - "page": 43, - "x": 2, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/shelf_front", - "page": 43, - "x": 260, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/furniture/shelf_side", - "page": 41, - "x": 522, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/furniture/stool_back", - "page": 44, - "x": 722, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/furniture/stool_side", - "page": 44, - "x": 788, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/furniture/tablelong_back", - "page": 32, - "x": 1160, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/furniture/tablelong_side", - "page": 36, - "x": 2, - "y": 668, - "w": 512, - "h": 256 - }, - { - "key": "things/building/furniture/tableshort_back", - "page": 39, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_MenuIcon", - "page": 44, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_east", - "page": 44, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_north", - "page": 44, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_south", - "page": 44, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/joy/BilliardsTable_east", - "page": 29, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/BilliardsTable_eastm", - "page": 29, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/BilliardsTable_north", - "page": 29, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/BilliardsTable_northm", - "page": 29, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/FlatscreenTelevision_east", - "page": 41, - "x": 652, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/joy/FlatscreenTelevision_north", - "page": 43, - "x": 518, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/joy/FlatscreenTelevision_south", - "page": 43, - "x": 776, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/joy/GrandPiano_east", - "page": 30, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/GrandPiano_north", - "page": 30, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/GrandPiano_south", - "page": 30, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/GrandPiano_west", - "page": 30, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/Harpsichord_east", - "page": 30, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/Harpsichord_north", - "page": 30, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/Harpsichord_south", - "page": 30, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/Harpsichord_west", - "page": 30, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/PokerTable", - "page": 30, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/PokerTable_m", - "page": 31, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/ToFix_HoopstoneRing", - "page": 44, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/joy/billiardstable_back", - "page": 39, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/joy/billiardstable_backm", - "page": 39, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/joy/billiardstable_side", - "page": 39, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/joy/billiardstable_sidem", - "page": 39, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/joy/chesstable", - "page": 44, - "x": 854, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/joy/flatscreentelevision_back", - "page": 44, - "x": 1802, - "y": 1432, - "w": 128, - "h": 64 - }, - { - "key": "things/building/joy/flatscreentelevision_front", - "page": 44, - "x": 2, - "y": 1562, - "w": 128, - "h": 64 - }, - { - "key": "things/building/joy/flatscreentelevision_side", - "page": 44, - "x": 522, - "y": 1432, - "w": 64, - "h": 128 - }, - { - "key": "things/building/joy/harp_south", - "page": 31, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/joy/horseshoespin", - "page": 44, - "x": 920, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/joy/megascreentelevision_back", - "page": 44, - "x": 1286, - "y": 1432, - "w": 256, - "h": 64 - }, - { - "key": "things/building/joy/megascreentelevision_front", - "page": 44, - "x": 1544, - "y": 1432, - "w": 256, - "h": 64 - }, - { - "key": "things/building/joy/megascreentelevision_side", - "page": 42, - "x": 262, - "y": 260, - "w": 64, - "h": 256 - }, - { - "key": "things/building/joy/telescope", - "page": 44, - "x": 986, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/joy/tubetelevision_back", - "page": 44, - "x": 1052, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/joy/tubetelevision_front", - "page": 44, - "x": 1118, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/joy/tubetelevision_side", - "page": 44, - "x": 1184, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/linked/Barricade_Atlas", - "page": 25, - "x": 772, - "y": 1286, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/RockFlecked_Atlas", - "page": 26, - "x": 2, - "y": 2, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/Rock_Atlas", - "page": 26, - "x": 644, - "y": 2, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/compactedmachinery_atlas", - "page": 36, - "x": 516, - "y": 2, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/powerconduit_atlas", - "page": 36, - "x": 838, - "y": 2, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/powerconduit_blueprint_atlas", - "page": 36, - "x": 1160, - "y": 2, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/powerconduit_menuicon", - "page": 44, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/linked/rockflecked_atlas_m", - "page": 36, - "x": 1482, - "y": 2, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/sandbags_atlas", - "page": 26, - "x": 1286, - "y": 2, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/sandbags_blueprint_atlas", - "page": 26, - "x": 2, - "y": 644, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/sandbags_menuicon", - "page": 44, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/linked/wall/wall_atlas_bricks", - "page": 36, - "x": 2, - "y": 346, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/wall/wall_atlas_planks", - "page": 36, - "x": 324, - "y": 346, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/wall/wall_atlas_smooth", - "page": 36, - "x": 646, - "y": 346, - "w": 320, - "h": 320 - }, - { - "key": "things/building/linked/wall_blueprint_atlas", - "page": 26, - "x": 644, - "y": 644, - "w": 640, - "h": 640 - }, - { - "key": "things/building/linked/wallbricks_menuicon", - "page": 44, - "x": 1250, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/linked/wallplanks_menuicon", - "page": 44, - "x": 1316, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/linked/wallsmooth_menuicon", - "page": 44, - "x": 1382, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/mech/ActivatorCountdown", - "page": 44, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/mech/ActivatorProximity", - "page": 44, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/mech/ShieldGeneratorBullet", - "page": 44, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/mech/ShieldGeneratorMortar", - "page": 44, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/building/mech/TurretMechanoid2x2_Base", - "page": 39, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/mech/TurretMechanoidMini_Base", - "page": 44, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/mech/UnstablePowerCell", - "page": 44, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/AnimusStone", - "page": 44, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/BandNode", - "page": 36, - "x": 968, - "y": 346, - "w": 310, - "h": 310 - }, - { - "key": "things/building/misc/Brazier", - "page": 44, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/Brazier_m", - "page": 44, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/ClimateAdjuster", - "page": 12, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/CommsConsole_east", - "page": 31, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/building/misc/CommsConsole_north", - "page": 31, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/misc/CommsConsole_south", - "page": 31, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/misc/DarkTorch", - "page": 44, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/DarklightBrazier", - "page": 44, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/DarklightBrazier_m", - "page": 44, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/Defoliator", - "page": 35, - "x": 516, - "y": 774, - "w": 384, - "h": 384 - }, - { - "key": "things/building/misc/EMIDynamo", - "page": 13, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/GeneProcessor", - "page": 39, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/GibbetCageBottom", - "page": 39, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/GibbetCageTop", - "page": 39, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MechanitorShip", - "page": 34, - "x": 1156, - "y": 1259, - "w": 640, - "h": 384 - }, - { - "key": "things/building/misc/MechanitorShipCrashed", - "page": 34, - "x": 2, - "y": 1645, - "w": 640, - "h": 384 - }, - { - "key": "things/building/misc/MechbandAntenna_east", - "page": 41, - "x": 782, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/MechbandAntenna_north", - "page": 43, - "x": 1034, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/MechbandAntenna_south", - "page": 43, - "x": 1292, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/MechbandAntenna_west", - "page": 41, - "x": 912, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/MechbandDish", - "page": 39, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MechbandDish_east", - "page": 39, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MechbandDish_north", - "page": 39, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MechbandDish_south", - "page": 39, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MechbandDish_westt", - "page": 39, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/MenuIconWastepackAtomizer", - "page": 44, - "x": 1156, - "y": 1432, - "w": 128, - "h": 86 - }, - { - "key": "things/building/misc/MultiAnalyzer", - "page": 39, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/PassiveCooler", - "page": 44, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/PsychicDroner", - "page": 14, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/PsychicSuppressor", - "page": 15, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/Redtorch", - "page": 44, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/SmokeSpewer", - "page": 16, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/Spacedrone", - "page": 20, - "x": 2, - "y": 1028, - "w": 1632, - "h": 960 - }, - { - "key": "things/building/misc/SunBlocker", - "page": 17, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/ToxicSpewer", - "page": 18, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/Urn", - "page": 44, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_east", - "page": 35, - "x": 902, - "y": 774, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_north", - "page": 43, - "x": 1160, - "y": 390, - "w": 256, - "h": 171 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_south", - "page": 43, - "x": 1418, - "y": 390, - "w": 256, - "h": 171 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_east", - "page": 35, - "x": 1160, - "y": 774, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_north", - "page": 43, - "x": 1676, - "y": 390, - "w": 256, - "h": 171 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_south", - "page": 43, - "x": 2, - "y": 568, - "w": 256, - "h": 171 - }, - { - "key": "things/building/misc/WastepackAtomizer_east", - "page": 35, - "x": 1418, - "y": 774, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/WastepackAtomizer_north", - "page": 37, - "x": 1459, - "y": 260, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/WastepackAtomizer_south", - "page": 37, - "x": 2, - "y": 518, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/WeatherController", - "page": 19, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_east", - "page": 44, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_north", - "page": 44, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_south", - "page": 44, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/animalbed/AnimalBed", - "page": 39, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/animalbed/AnimalSleepBox", - "page": 44, - "x": 1822, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/animalbed/animalsleepspot", - "page": 44, - "x": 1448, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/autobong/Autobong", - "page": 39, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/autobong/Autobong_m", - "page": 39, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPodMenuIcon", - "page": 44, - "x": 2, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_east", - "page": 35, - "x": 1676, - "y": 774, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_north", - "page": 37, - "x": 388, - "y": 518, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_south", - "page": 37, - "x": 774, - "y": 518, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/bonsaitreepot/BonsaiTreePot", - "page": 44, - "x": 132, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/burnbong/BurnBong", - "page": 39, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/campfire", - "page": 44, - "x": 1514, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/cannibalplatter/CannibalPlatter_east", - "page": 37, - "x": 1160, - "y": 518, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/cannibalplatter/CannibalPlatter_south", - "page": 35, - "x": 2, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/caravanpackingspot", - "page": 44, - "x": 1580, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/commsconsole", - "page": 39, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_east", - "page": 43, - "x": 1550, - "y": 871, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_north", - "page": 41, - "x": 1042, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_south", - "page": 41, - "x": 1172, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_east", - "page": 39, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_eastm", - "page": 40, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_north", - "page": 40, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_northm", - "page": 40, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_south", - "page": 40, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_southm", - "page": 40, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_east", - "page": 40, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_eastm", - "page": 40, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_north", - "page": 40, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_northm", - "page": 40, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_south", - "page": 40, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_southm", - "page": 40, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/dropbeacon", - "page": 44, - "x": 1646, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/drum/Drum", - "page": 44, - "x": 262, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/drum/Drum_m", - "page": 44, - "x": 392, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/dryadformingpod/DryadFormingPod", - "page": 44, - "x": 522, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/dryadsphere/DryadSphereBack", - "page": 40, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/dryadsphere/DryadSphereFront", - "page": 40, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/effigy/Effigy", - "page": 44, - "x": 652, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/firefoampopper", - "page": 44, - "x": 1712, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/fungusdarktorch/FungusDarkTorch", - "page": 44, - "x": 782, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA", - "page": 44, - "x": 912, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB", - "page": 44, - "x": 1042, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC", - "page": 44, - "x": 1172, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_east", - "page": 35, - "x": 260, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_north", - "page": 37, - "x": 1546, - "y": 518, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_south", - "page": 37, - "x": 2, - "y": 776, - "w": 384, - "h": 256 - }, - { - "key": "things/building/misc/genebank/Genebank_east", - "page": 42, - "x": 394, - "y": 260, - "w": 128, - "h": 210 - }, - { - "key": "things/building/misc/genebank/Genebank_north", - "page": 43, - "x": 1034, - "y": 1651, - "w": 210, - "h": 128 - }, - { - "key": "things/building/misc/genebank/Genebank_south", - "page": 43, - "x": 1246, - "y": 1651, - "w": 210, - "h": 128 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_east", - "page": 40, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_north", - "page": 40, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_south", - "page": 40, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_west", - "page": 40, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/glucosoidpump/GlucosoidPump_east", - "page": 43, - "x": 2, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/glucosoidpump/GlucosoidPump_south", - "page": 41, - "x": 1302, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/graveempty_back", - "page": 40, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/graveempty_front", - "page": 40, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/graveempty_side", - "page": 40, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/gravefull_back", - "page": 40, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/gravefull_front", - "page": 40, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/gravefull_side", - "page": 40, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/groundpenetratingscanner", - "page": 44, - "x": 1302, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/growthvat/GrowthVatTop_east", - "page": 43, - "x": 260, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/growthvat/GrowthVatTop_south", - "page": 41, - "x": 1432, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/growthvat/GrowthVat_east", - "page": 43, - "x": 518, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/growthvat/GrowthVat_south", - "page": 41, - "x": 1562, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_east", - "page": 43, - "x": 776, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_north", - "page": 41, - "x": 1692, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_south", - "page": 41, - "x": 1822, - "y": 1292, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_west", - "page": 43, - "x": 1034, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/hemopump/Hemopump_east", - "page": 43, - "x": 1292, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/hemopump/Hemopump_south", - "page": 41, - "x": 2, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/incenseshrine/IncenseShrine", - "page": 40, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_east", - "page": 44, - "x": 1432, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_north", - "page": 44, - "x": 1562, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_south", - "page": 44, - "x": 1692, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_east", - "page": 44, - "x": 1822, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_north", - "page": 44, - "x": 2, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_south", - "page": 44, - "x": 132, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/lectern/Lectern_east", - "page": 44, - "x": 262, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/lectern/Lectern_north", - "page": 44, - "x": 392, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/lectern/Lectern_south", - "page": 44, - "x": 522, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/longrangemineralscanner", - "page": 44, - "x": 652, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/marriagespot", - "page": 44, - "x": 132, - "y": 1562, - "w": 128, - "h": 64 - }, - { - "key": "things/building/misc/moisturepump", - "page": 44, - "x": 1778, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineStoneA", - "page": 34, - "x": 581, - "y": 2, - "w": 435, - "h": 435 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineWoodA", - "page": 34, - "x": 1018, - "y": 2, - "w": 435, - "h": 435 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineWoodB", - "page": 34, - "x": 1455, - "y": 2, - "w": 435, - "h": 435 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineStoneA", - "page": 40, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineWoodA", - "page": 40, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineWoodB", - "page": 40, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_east", - "page": 43, - "x": 1288, - "y": 568, - "w": 384, - "h": 128 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_north", - "page": 35, - "x": 874, - "y": 1546, - "w": 128, - "h": 384 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_south", - "page": 35, - "x": 1004, - "y": 1546, - "w": 128, - "h": 384 - }, - { - "key": "things/building/misc/partyspot", - "page": 44, - "x": 1844, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/pew/Pew_east", - "page": 10, - "x": 1540, - "y": 2, - "w": 384, - "h": 1152 - }, - { - "key": "things/building/misc/pew/Pew_north", - "page": 34, - "x": 2, - "y": 873, - "w": 1152, - "h": 384 - }, - { - "key": "things/building/misc/pew/Pew_south", - "page": 34, - "x": 2, - "y": 1259, - "w": 1152, - "h": 384 - }, - { - "key": "things/building/misc/podlauncher", - "page": 41, - "x": 132, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_east", - "page": 43, - "x": 1550, - "y": 1001, - "w": 256, - "h": 128 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_north", - "page": 41, - "x": 262, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_south", - "page": 41, - "x": 392, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/misc/pyre/Pyre", - "page": 40, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/reliquary/Reliquary_east", - "page": 26, - "x": 2, - "y": 1286, - "w": 440, - "h": 577 - }, - { - "key": "things/building/misc/reliquary/Reliquary_eastm", - "page": 26, - "x": 444, - "y": 1286, - "w": 440, - "h": 577 - }, - { - "key": "things/building/misc/reliquary/Reliquary_north", - "page": 33, - "x": 2, - "y": 1480, - "w": 577, - "h": 440 - }, - { - "key": "things/building/misc/reliquary/Reliquary_northm", - "page": 33, - "x": 581, - "y": 1480, - "w": 577, - "h": 440 - }, - { - "key": "things/building/misc/reliquary/Reliquary_south", - "page": 33, - "x": 1160, - "y": 1480, - "w": 577, - "h": 440 - }, - { - "key": "things/building/misc/reliquary/Reliquary_southm", - "page": 34, - "x": 2, - "y": 2, - "w": 577, - "h": 440 - }, - { - "key": "things/building/misc/sacrificialflag/SacrificialFlag", - "page": 44, - "x": 782, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/sarcophagus_back", - "page": 40, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/sarcophagus_side", - "page": 40, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/sarcophagusfull_back", - "page": 40, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/sarcophagusfull_side", - "page": 40, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/skullspike/Skullspike", - "page": 44, - "x": 912, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/skullspike/Skullspike_m", - "page": 44, - "x": 1042, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/slabbed/SlabBed_east", - "page": 40, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/slabbed/SlabBed_eastm", - "page": 40, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/slabbed/SlabBed_north", - "page": 40, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/slabbed/SlabBed_northm", - "page": 40, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/slabbed/SlabBed_south", - "page": 40, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/slabbed/SlabBed_southm", - "page": 40, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_east", - "page": 44, - "x": 1172, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_north", - "page": 44, - "x": 1302, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_south", - "page": 44, - "x": 1432, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_east", - "page": 33, - "x": 260, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_eastm", - "page": 33, - "x": 454, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_north", - "page": 42, - "x": 524, - "y": 260, - "w": 448, - "h": 192 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_northm", - "page": 42, - "x": 974, - "y": 260, - "w": 448, - "h": 192 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_south", - "page": 42, - "x": 1424, - "y": 260, - "w": 448, - "h": 192 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_southm", - "page": 42, - "x": 2, - "y": 518, - "w": 448, - "h": 192 - }, - { - "key": "things/building/misc/tempcontrol/cooler_back", - "page": 44, - "x": 1910, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/cooler_front", - "page": 44, - "x": 1976, - "y": 1562, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/cooler_side", - "page": 44, - "x": 2, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/heater", - "page": 44, - "x": 68, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/vent_back", - "page": 44, - "x": 134, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/vent_off_back", - "page": 44, - "x": 200, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/vent_off_side", - "page": 44, - "x": 266, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/tempcontrol/vent_side", - "page": 44, - "x": 332, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/toolcabinet_back", - "page": 44, - "x": 262, - "y": 1562, - "w": 128, - "h": 64 - }, - { - "key": "things/building/misc/toolcabinet_side", - "page": 44, - "x": 588, - "y": 1432, - "w": 64, - "h": 128 - }, - { - "key": "things/building/misc/torchlamp", - "page": 44, - "x": 398, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/vitalsmonitor_back", - "page": 44, - "x": 464, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/vitalsmonitor_front", - "page": 44, - "x": 530, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/misc/vitalsmonitor_side", - "page": 44, - "x": 596, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/natural/GlowPod", - "page": 44, - "x": 1562, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/Hive", - "page": 40, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabA", - "page": 44, - "x": 1692, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabB", - "page": 44, - "x": 1822, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabC", - "page": 44, - "x": 2, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderA", - "page": 40, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderB", - "page": 40, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderC", - "page": 40, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeA", - "page": 44, - "x": 132, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeB", - "page": 44, - "x": 262, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeC", - "page": 44, - "x": 392, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/natural/collapsedrocks", - "page": 40, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/natural/steamgeyser", - "page": 40, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/power/ChemfuelPoweredGenerator", - "page": 40, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/power/GeothermalPlant", - "page": 20, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "things/building/power/MechBooster", - "page": 40, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/power/SolarCollector", - "page": 31, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/building/power/ToxifierGenerator", - "page": 40, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/power/WoodFiredGenerator", - "page": 40, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/power/battery_back", - "page": 41, - "x": 522, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/power/battery_side", - "page": 43, - "x": 2, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/power/fueledgenerator", - "page": 44, - "x": 522, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/power/powerswitch", - "page": 44, - "x": 662, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/power/powerswitch_off", - "page": 44, - "x": 728, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBlades", - "page": 43, - "x": 260, - "y": 568, - "w": 512, - "h": 128 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_east", - "page": 25, - "x": 2, - "y": 2, - "w": 768, - "h": 640 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_north", - "page": 24, - "x": 2, - "y": 2, - "w": 640, - "h": 768 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_south", - "page": 24, - "x": 644, - "y": 2, - "w": 640, - "h": 768 - }, - { - "key": "things/building/power/windturbine/WindTurbineBlades", - "page": 43, - "x": 774, - "y": 568, - "w": 512, - "h": 128 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_east", - "page": 32, - "x": 1418, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_north", - "page": 36, - "x": 516, - "y": 668, - "w": 512, - "h": 256 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_south", - "page": 36, - "x": 1030, - "y": 668, - "w": 512, - "h": 256 - }, - { - "key": "things/building/power/windturbine/WindTurbine_MenuIcon", - "page": 43, - "x": 260, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/power/windturbine/windturbinebody", - "page": 43, - "x": 518, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/BasicRecharger_east", - "page": 35, - "x": 518, - "y": 1546, - "w": 176, - "h": 384 - }, - { - "key": "things/building/production/BasicRecharger_north", - "page": 43, - "x": 1352, - "y": 196, - "w": 384, - "h": 176 - }, - { - "key": "things/building/production/BasicRecharger_south", - "page": 43, - "x": 2, - "y": 390, - "w": 384, - "h": 176 - }, - { - "key": "things/building/production/Crematorium_east", - "page": 35, - "x": 518, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/production/Crematorium_eastm", - "page": 35, - "x": 776, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/production/Crematorium_north", - "page": 37, - "x": 388, - "y": 776, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/Crematorium_northm", - "page": 37, - "x": 774, - "y": 776, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/Crematorium_south", - "page": 37, - "x": 1160, - "y": 776, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/Crematorium_southm", - "page": 37, - "x": 1546, - "y": 776, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/DeepDrill", - "page": 40, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/FermentingBarrel_east", - "page": 44, - "x": 652, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/FermentingBarrel_north", - "page": 44, - "x": 782, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/Hopper_MenuIcon", - "page": 44, - "x": 912, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/Hopper_east", - "page": 44, - "x": 1042, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/Hopper_north", - "page": 44, - "x": 1172, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/Hopper_south", - "page": 44, - "x": 1302, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/LampSun", - "page": 44, - "x": 1432, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_east", - "page": 0, - "x": 2, - "y": 2, - "w": 1280, - "h": 1536 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_north", - "page": 5, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_south", - "page": 6, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorLargeTop_east", - "page": 1, - "x": 2, - "y": 2, - "w": 1280, - "h": 1536 - }, - { - "key": "things/building/production/MechGestatorLargeTop_north", - "page": 7, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorLargeTop_south", - "page": 8, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorLarge_east", - "page": 2, - "x": 2, - "y": 2, - "w": 1280, - "h": 1536 - }, - { - "key": "things/building/production/MechGestatorLarge_north", - "page": 9, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorLarge_south", - "page": 10, - "x": 2, - "y": 2, - "w": 1536, - "h": 1280 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_east", - "page": 3, - "x": 2, - "y": 2, - "w": 960, - "h": 1440 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_north", - "page": 21, - "x": 2, - "y": 2, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_south", - "page": 21, - "x": 2, - "y": 964, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/MechGestatorStandardTop_east", - "page": 3, - "x": 964, - "y": 2, - "w": 960, - "h": 1440 - }, - { - "key": "things/building/production/MechGestatorStandardTop_north", - "page": 22, - "x": 2, - "y": 2, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/MechGestatorStandardTop_south", - "page": 22, - "x": 2, - "y": 964, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/MechGestatorStandard_east", - "page": 4, - "x": 2, - "y": 2, - "w": 960, - "h": 1440 - }, - { - "key": "things/building/production/MechGestatorStandard_north", - "page": 23, - "x": 2, - "y": 2, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/MechGestatorStandard_south", - "page": 23, - "x": 2, - "y": 964, - "w": 1440, - "h": 960 - }, - { - "key": "things/building/production/PollutionPump", - "page": 44, - "x": 1562, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/production/StandardRecharger_east", - "page": 32, - "x": 388, - "y": 2, - "w": 384, - "h": 512 - }, - { - "key": "things/building/production/StandardRecharger_north", - "page": 35, - "x": 2, - "y": 388, - "w": 512, - "h": 384 - }, - { - "key": "things/building/production/StandardRecharger_south", - "page": 35, - "x": 516, - "y": 388, - "w": 512, - "h": 384 - }, - { - "key": "things/building/production/SubcoreEncoder_east", - "page": 35, - "x": 1034, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/production/SubcoreEncoder_north", - "page": 37, - "x": 2, - "y": 1034, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/SubcoreEncoder_south", - "page": 37, - "x": 388, - "y": 1034, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/SubcoreRipscanner_east", - "page": 35, - "x": 1292, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/production/SubcoreRipscanner_north", - "page": 37, - "x": 774, - "y": 1034, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/SubcoreRipscanner_south", - "page": 37, - "x": 1160, - "y": 1034, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/SubcoreSoftscanner_east", - "page": 35, - "x": 1550, - "y": 1160, - "w": 256, - "h": 384 - }, - { - "key": "things/building/production/SubcoreSoftscanner_north", - "page": 37, - "x": 1546, - "y": 1034, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/SubcoreSoftscanner_south", - "page": 37, - "x": 2, - "y": 1292, - "w": 384, - "h": 256 - }, - { - "key": "things/building/production/TableBrewery_east", - "page": 33, - "x": 648, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableBrewery_north", - "page": 42, - "x": 452, - "y": 518, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableBrewery_south", - "page": 42, - "x": 902, - "y": 518, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableButcher_east", - "page": 33, - "x": 842, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableButcher_north", - "page": 42, - "x": 1352, - "y": 518, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableButcher_south", - "page": 42, - "x": 2, - "y": 712, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableDrugLab_east", - "page": 33, - "x": 1036, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableDrugLab_eastm", - "page": 33, - "x": 1230, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableDrugLab_north", - "page": 42, - "x": 452, - "y": 712, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableDrugLab_northm", - "page": 42, - "x": 902, - "y": 712, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableDrugLab_south", - "page": 42, - "x": 1352, - "y": 712, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableDrugLab_southm", - "page": 42, - "x": 2, - "y": 906, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableMachining_east", - "page": 33, - "x": 1424, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableMachining_north", - "page": 42, - "x": 452, - "y": 906, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableMachining_south", - "page": 42, - "x": 902, - "y": 906, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableSmithingElectric_east", - "page": 33, - "x": 1618, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableSmithingElectric_north", - "page": 42, - "x": 1352, - "y": 906, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableSmithingElectric_south", - "page": 42, - "x": 2, - "y": 1100, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableSmithingFueled_east", - "page": 33, - "x": 1812, - "y": 516, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableSmithingFueled_north", - "page": 42, - "x": 452, - "y": 1100, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableSmithingFueled_south", - "page": 42, - "x": 902, - "y": 1100, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveElectric_east", - "page": 33, - "x": 2, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableStoveElectric_eastm", - "page": 33, - "x": 196, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableStoveElectric_north", - "page": 42, - "x": 1352, - "y": 1100, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveElectric_northm", - "page": 42, - "x": 2, - "y": 1294, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveElectric_south", - "page": 42, - "x": 452, - "y": 1294, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveElectric_southm", - "page": 42, - "x": 902, - "y": 1294, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveFueled_east", - "page": 33, - "x": 390, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableStoveFueled_eastm", - "page": 33, - "x": 584, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableStoveFueled_north", - "page": 42, - "x": 1352, - "y": 1294, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveFueled_northm", - "page": 42, - "x": 2, - "y": 1488, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveFueled_south", - "page": 42, - "x": 452, - "y": 1488, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableStoveFueled_southm", - "page": 42, - "x": 902, - "y": 1488, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorElectric_east", - "page": 33, - "x": 778, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableTailorElectric_eastm", - "page": 33, - "x": 972, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableTailorElectric_north", - "page": 42, - "x": 1352, - "y": 1488, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorElectric_northm", - "page": 42, - "x": 2, - "y": 1682, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorElectric_south", - "page": 42, - "x": 452, - "y": 1682, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorElectric_southm", - "page": 42, - "x": 902, - "y": 1682, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorHand_east", - "page": 33, - "x": 1166, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableTailorHand_eastm", - "page": 33, - "x": 1360, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/production/TableTailorHand_north", - "page": 42, - "x": 1352, - "y": 1682, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorHand_northm", - "page": 43, - "x": 2, - "y": 2, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorHand_south", - "page": 43, - "x": 452, - "y": 2, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/TableTailorHand_southm", - "page": 43, - "x": 902, - "y": 2, - "w": 448, - "h": 192 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_east", - "page": 36, - "x": 1592, - "y": 346, - "w": 400, - "h": 300 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_north", - "page": 34, - "x": 518, - "y": 444, - "w": 300, - "h": 400 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_south", - "page": 34, - "x": 820, - "y": 444, - "w": 300, - "h": 400 - }, - { - "key": "things/building/production/componentassemblybench_back", - "page": 36, - "x": 2, - "y": 926, - "w": 512, - "h": 256 - }, - { - "key": "things/building/production/componentassemblybench_side", - "page": 32, - "x": 1676, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/production/craftingspot", - "page": 44, - "x": 794, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/production/crematorium", - "page": 43, - "x": 776, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/crematorium_m", - "page": 43, - "x": 1034, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/electricsmelter_back", - "page": 43, - "x": 1292, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/electricsmelter_front", - "page": 43, - "x": 1550, - "y": 1131, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/electricsmelter_side", - "page": 41, - "x": 652, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/fermentingbarrel_back", - "page": 44, - "x": 860, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/production/fermentingbarrel_side", - "page": 44, - "x": 926, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/production/hopper", - "page": 44, - "x": 992, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/production/hydroponicsbasin", - "page": 42, - "x": 328, - "y": 260, - "w": 64, - "h": 256 - }, - { - "key": "things/building/production/nutrientdispenser", - "page": 41, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/refinery", - "page": 43, - "x": 2, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/researchbenchhitech_back", - "page": 36, - "x": 516, - "y": 926, - "w": 512, - "h": 256 - }, - { - "key": "things/building/production/researchbenchhitech_backm", - "page": 36, - "x": 1030, - "y": 926, - "w": 512, - "h": 256 - }, - { - "key": "things/building/production/researchbenchhitech_side", - "page": 32, - "x": 2, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/production/researchbenchhitech_sidem", - "page": 32, - "x": 260, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/production/researchbenchsimple_back", - "page": 41, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/researchbenchsimple_backm", - "page": 41, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/researchbenchsimple_side", - "page": 41, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/researchbenchsimple_sidem", - "page": 41, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/production/tablebrewery_back", - "page": 43, - "x": 260, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablebrewery_side", - "page": 41, - "x": 782, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablebutcher_back", - "page": 43, - "x": 518, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablebutcher_front", - "page": 43, - "x": 776, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablebutcher_side", - "page": 41, - "x": 912, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tabledruglab_back", - "page": 43, - "x": 1034, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tabledruglab_backm", - "page": 43, - "x": 1292, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tabledruglab_side", - "page": 41, - "x": 1042, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tabledruglab_sidem", - "page": 41, - "x": 1172, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablemachining_back", - "page": 43, - "x": 1550, - "y": 1261, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablemachining_front", - "page": 43, - "x": 2, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablemachining_side", - "page": 41, - "x": 1302, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablesculpting_back", - "page": 43, - "x": 260, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablesculpting_side", - "page": 41, - "x": 1432, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablesmithingelectric_back", - "page": 43, - "x": 518, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablesmithingelectric_side", - "page": 41, - "x": 1562, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablesmithingfueled_back", - "page": 43, - "x": 776, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablesmithingfueled_side", - "page": 41, - "x": 1692, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablestonecutter_back", - "page": 43, - "x": 1034, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablestonecutter_side", - "page": 41, - "x": 1822, - "y": 1550, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablestoveelectric_back", - "page": 43, - "x": 1292, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablestoveelectric_side", - "page": 42, - "x": 2, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tablestovefueled_back", - "page": 43, - "x": 1550, - "y": 1391, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tablestovefueled_side", - "page": 42, - "x": 132, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tabletailorelectric_back", - "page": 43, - "x": 2, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tabletailorelectric_side", - "page": 42, - "x": 262, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/production/tabletailorhand_back", - "page": 43, - "x": 260, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/production/tabletailorhand_side", - "page": 42, - "x": 392, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AirConditioner", - "page": 44, - "x": 1692, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientBandNode", - "page": 36, - "x": 1280, - "y": 346, - "w": 310, - "h": 310 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_east", - "page": 35, - "x": 696, - "y": 1546, - "w": 176, - "h": 384 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_north", - "page": 43, - "x": 388, - "y": 390, - "w": 384, - "h": 176 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_south", - "page": 43, - "x": 774, - "y": 390, - "w": 384, - "h": 176 - }, - { - "key": "things/building/ruins/AncientBed_east", - "page": 41, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientBed_north", - "page": 41, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientBed_south", - "page": 41, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientBustedShipBeacon", - "page": 44, - "x": 1822, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_east", - "page": 35, - "x": 2, - "y": 1546, - "w": 256, - "h": 384 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_north", - "page": 37, - "x": 388, - "y": 1292, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_south", - "page": 37, - "x": 774, - "y": 1292, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/AncientCommsConsole_east", - "page": 35, - "x": 260, - "y": 1546, - "w": 256, - "h": 384 - }, - { - "key": "things/building/ruins/AncientCommsConsole_north", - "page": 37, - "x": 1160, - "y": 1292, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/AncientCommsConsole_south", - "page": 37, - "x": 1546, - "y": 1292, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_east", - "page": 43, - "x": 518, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_north", - "page": 42, - "x": 522, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_south", - "page": 42, - "x": 652, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientDisplayBank_east", - "page": 33, - "x": 1554, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/ruins/AncientDisplayBank_north", - "page": 43, - "x": 1352, - "y": 2, - "w": 448, - "h": 192 - }, - { - "key": "things/building/ruins/AncientDisplayBank_south", - "page": 43, - "x": 2, - "y": 196, - "w": 448, - "h": 192 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_east", - "page": 44, - "x": 2, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_north", - "page": 44, - "x": 132, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_south", - "page": 44, - "x": 262, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientEquipmentBlocks_east", - "page": 20, - "x": 1028, - "y": 2, - "w": 512, - "h": 1024 - }, - { - "key": "things/building/ruins/AncientEquipmentBlocks_north", - "page": 26, - "x": 886, - "y": 1286, - "w": 1024, - "h": 512 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_east", - "page": 43, - "x": 776, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_north", - "page": 42, - "x": 782, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_south", - "page": 42, - "x": 912, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_east", - "page": 43, - "x": 1034, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_north", - "page": 42, - "x": 1042, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_south", - "page": 42, - "x": 1172, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientLamp", - "page": 44, - "x": 392, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/AncientLargeMechFormer_south", - "page": 25, - "x": 772, - "y": 2, - "w": 768, - "h": 640 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator", - "page": 25, - "x": 2, - "y": 644, - "w": 768, - "h": 640 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_east", - "page": 24, - "x": 1286, - "y": 2, - "w": 640, - "h": 768 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_north", - "page": 25, - "x": 772, - "y": 644, - "w": 768, - "h": 640 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_south", - "page": 25, - "x": 2, - "y": 1286, - "w": 768, - "h": 640 - }, - { - "key": "things/building/ruins/AncientLockerBank_east", - "page": 33, - "x": 1748, - "y": 1030, - "w": 192, - "h": 448 - }, - { - "key": "things/building/ruins/AncientLockerBank_north", - "page": 43, - "x": 452, - "y": 196, - "w": 448, - "h": 192 - }, - { - "key": "things/building/ruins/AncientLockerBank_south", - "page": 43, - "x": 902, - "y": 196, - "w": 448, - "h": 192 - }, - { - "key": "things/building/ruins/AncientMechGestator_east", - "page": 24, - "x": 1030, - "y": 772, - "w": 480, - "h": 720 - }, - { - "key": "things/building/ruins/AncientMechGestator_north", - "page": 44, - "x": 852, - "y": 1432, - "w": 150, - "h": 100 - }, - { - "key": "things/building/ruins/AncientMechGestator_south", - "page": 44, - "x": 1004, - "y": 1432, - "w": 150, - "h": 100 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_east", - "page": 43, - "x": 1292, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_north", - "page": 42, - "x": 1302, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_south", - "page": 42, - "x": 1432, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientOperatingTable_east", - "page": 43, - "x": 1550, - "y": 1521, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientOperatingTable_north", - "page": 42, - "x": 1562, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientOperatingTable_south", - "page": 42, - "x": 1692, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_east", - "page": 41, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_north", - "page": 41, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_south", - "page": 41, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_east", - "page": 41, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_north", - "page": 41, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_south", - "page": 41, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_east", - "page": 32, - "x": 774, - "y": 2, - "w": 384, - "h": 512 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_north", - "page": 35, - "x": 1030, - "y": 388, - "w": 512, - "h": 384 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_south", - "page": 35, - "x": 2, - "y": 774, - "w": 512, - "h": 384 - }, - { - "key": "things/building/ruins/AncientStorageCylinder_east", - "page": 32, - "x": 518, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/AncientStorageCylinder_south", - "page": 36, - "x": 2, - "y": 1184, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/AncientSystemRack_east", - "page": 43, - "x": 2, - "y": 741, - "w": 384, - "h": 128 - }, - { - "key": "things/building/ruins/AncientSystemRack_north", - "page": 35, - "x": 1134, - "y": 1546, - "w": 128, - "h": 384 - }, - { - "key": "things/building/ruins/AncientToxifierGenerator", - "page": 41, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientWarspiderRemains", - "page": 26, - "x": 1286, - "y": 644, - "w": 640, - "h": 640 - }, - { - "key": "things/building/ruins/AncientWarsprinterRemains", - "page": 34, - "x": 644, - "y": 1645, - "w": 640, - "h": 384 - }, - { - "key": "things/building/ruins/AncientWarwalkerClaw_east", - "page": 43, - "x": 2, - "y": 1651, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/AncientWarwalkerClaw_south", - "page": 42, - "x": 1822, - "y": 2, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ruins/AncientWarwalkerFoot", - "page": 41, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/AncientWarwalkerLeg_east", - "page": 36, - "x": 516, - "y": 1184, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/AncientWarwalkerLeg_south", - "page": 32, - "x": 776, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/AncientWarwalkerShell", - "page": 34, - "x": 1286, - "y": 1645, - "w": 640, - "h": 384 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_east", - "page": 27, - "x": 2, - "y": 2, - "w": 768, - "h": 512 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_north", - "page": 24, - "x": 2, - "y": 772, - "w": 512, - "h": 768 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_south", - "page": 24, - "x": 516, - "y": 772, - "w": 512, - "h": 768 - }, - { - "key": "things/building/ruins/CrateLarge", - "page": 44, - "x": 522, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/CrateLong", - "page": 44, - "x": 652, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/CrateSmall", - "page": 44, - "x": 782, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/Fridge", - "page": 44, - "x": 912, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/JetEngine", - "page": 37, - "x": 2, - "y": 1550, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/KitchenSink", - "page": 44, - "x": 1042, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/LargeEngineBlock", - "page": 43, - "x": 260, - "y": 1651, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/PipelineSection", - "page": 43, - "x": 518, - "y": 1651, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ruins/PodCar", - "page": 37, - "x": 388, - "y": 1550, - "w": 384, - "h": 256 - }, - { - "key": "things/building/ruins/Postbox", - "page": 44, - "x": 1172, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/RuinedTank", - "page": 35, - "x": 2, - "y": 2, - "w": 640, - "h": 384 - }, - { - "key": "things/building/ruins/RustedCarA_east", - "page": 36, - "x": 1030, - "y": 1184, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarA_north", - "page": 32, - "x": 1034, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarA_south", - "page": 32, - "x": 1292, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarB_east", - "page": 36, - "x": 2, - "y": 1442, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarB_north", - "page": 32, - "x": 1550, - "y": 516, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarB_south", - "page": 32, - "x": 2, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarC_east", - "page": 36, - "x": 516, - "y": 1442, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarC_north", - "page": 32, - "x": 260, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarC_south", - "page": 32, - "x": 518, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarD_east", - "page": 36, - "x": 1030, - "y": 1442, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarD_north", - "page": 32, - "x": 776, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarD_south", - "page": 32, - "x": 1034, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarE_east", - "page": 36, - "x": 2, - "y": 1700, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarE_north", - "page": 32, - "x": 1292, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarE_south", - "page": 32, - "x": 1550, - "y": 1030, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarFrame_east", - "page": 36, - "x": 516, - "y": 1700, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarFrame_north", - "page": 33, - "x": 2, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarFrame_south", - "page": 33, - "x": 260, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarTruck_east", - "page": 36, - "x": 1030, - "y": 1700, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/RustedCarTruck_north", - "page": 33, - "x": 518, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedCarTruck_south", - "page": 33, - "x": 776, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_east", - "page": 37, - "x": 1030, - "y": 260, - "w": 427, - "h": 256 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_north", - "page": 34, - "x": 2, - "y": 444, - "w": 256, - "h": 427 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_south", - "page": 34, - "x": 260, - "y": 444, - "w": 256, - "h": 427 - }, - { - "key": "things/building/ruins/Stove", - "page": 44, - "x": 1302, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/VendingMachine", - "page": 44, - "x": 1432, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientbarrel/Barrel", - "page": 44, - "x": 1562, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelA", - "page": 44, - "x": 1692, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelB", - "page": 44, - "x": 1822, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelC", - "page": 44, - "x": 2, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientconcretebarrier/ancientconcretebarriera", - "page": 44, - "x": 1058, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb", - "page": 44, - "x": 1124, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/ruins/ancientcrate/CrateA", - "page": 44, - "x": 132, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientcrate/CrateB", - "page": 44, - "x": 262, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientcrate/CrateC", - "page": 44, - "x": 392, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderCannon", - "page": 35, - "x": 1264, - "y": 1546, - "w": 512, - "h": 342 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderHead", - "page": 31, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderMidsection", - "page": 36, - "x": 2, - "y": 2, - "w": 512, - "h": 342 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA", - "page": 37, - "x": 2, - "y": 2, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB", - "page": 37, - "x": 516, - "y": 2, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC", - "page": 37, - "x": 1030, - "y": 2, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA", - "page": 44, - "x": 522, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB", - "page": 44, - "x": 652, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC", - "page": 44, - "x": 782, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorA", - "page": 41, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorB", - "page": 41, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorC", - "page": 41, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlampposta", - "page": 44, - "x": 654, - "y": 1432, - "w": 64, - "h": 128 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlamppostb", - "page": 44, - "x": 720, - "y": 1432, - "w": 64, - "h": 128 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlamppostc", - "page": 44, - "x": 786, - "y": 1432, - "w": 64, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusA", - "page": 44, - "x": 912, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusB", - "page": 44, - "x": 1042, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusC", - "page": 44, - "x": 1172, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusD", - "page": 44, - "x": 1302, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusE", - "page": 44, - "x": 1432, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusF", - "page": 44, - "x": 1562, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusG", - "page": 44, - "x": 1692, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusH", - "page": 44, - "x": 1822, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusI", - "page": 44, - "x": 2, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusJ", - "page": 44, - "x": 132, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA", - "page": 41, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB", - "page": 41, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC", - "page": 41, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireA", - "page": 44, - "x": 262, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireB", - "page": 44, - "x": 392, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireC", - "page": 44, - "x": 522, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireD", - "page": 44, - "x": 652, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireE", - "page": 44, - "x": 782, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretA", - "page": 44, - "x": 912, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretB", - "page": 44, - "x": 1042, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretC", - "page": 44, - "x": 1172, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretD", - "page": 44, - "x": 1302, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapA", - "page": 41, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapB", - "page": 41, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapC", - "page": 41, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/concretebarrier", - "page": 44, - "x": 1190, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA", - "page": 44, - "x": 1432, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB", - "page": 44, - "x": 1562, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC", - "page": 44, - "x": 1692, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD", - "page": 44, - "x": 1822, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE", - "page": 44, - "x": 2, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF", - "page": 44, - "x": 132, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG", - "page": 44, - "x": 262, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH", - "page": 44, - "x": 392, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI", - "page": 44, - "x": 522, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ", - "page": 44, - "x": 652, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA", - "page": 44, - "x": 782, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB", - "page": 44, - "x": 912, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC", - "page": 44, - "x": 1042, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelA", - "page": 41, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelB", - "page": 41, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelC", - "page": 41, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelD", - "page": 41, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelE", - "page": 41, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelF", - "page": 41, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockA", - "page": 44, - "x": 1172, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockB", - "page": 44, - "x": 1302, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockC", - "page": 44, - "x": 1432, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartA", - "page": 44, - "x": 1562, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartB", - "page": 44, - "x": 1692, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartC", - "page": 44, - "x": 1822, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartD", - "page": 44, - "x": 2, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartE", - "page": 44, - "x": 132, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelA", - "page": 44, - "x": 262, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelB", - "page": 44, - "x": 392, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelC", - "page": 44, - "x": 522, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelD", - "page": 44, - "x": 652, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelE", - "page": 44, - "x": 782, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ruins/wheel/WheelF", - "page": 44, - "x": 912, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDAntigrainWarhead", - "page": 44, - "x": 1042, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDDeadlife", - "page": 44, - "x": 1172, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDEMP", - "page": 44, - "x": 1302, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDFirefoam", - "page": 44, - "x": 1432, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDHighExplosive", - "page": 44, - "x": 1562, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDIncendiary", - "page": 44, - "x": 1692, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/IEDTox", - "page": 44, - "x": 1822, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/deadfallarmed", - "page": 44, - "x": 1256, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/security/deadfallunarmed", - "page": 44, - "x": 1322, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/security/iedbomb", - "page": 44, - "x": 1388, - "y": 1628, - "w": 64, - "h": 64 - }, - { - "key": "things/building/security/turretimprovised", - "page": 41, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/security/turretimprovised_top", - "page": 44, - "x": 2, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/turretmortarbase", - "page": 41, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/security/turretmortarbomb_top", - "page": 44, - "x": 132, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/turretmortaremp_top", - "page": 44, - "x": 262, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/building/security/turretmortarincendiary_top", - "page": 44, - "x": 392, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_east", - "page": 37, - "x": 2, - "y": 260, - "w": 512, - "h": 256 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_north", - "page": 33, - "x": 1034, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_south", - "page": 33, - "x": 1292, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ship/shipbeam_back", - "page": 33, - "x": 1550, - "y": 2, - "w": 256, - "h": 512 - }, - { - "key": "things/building/ship/shipcomputercore_back", - "page": 41, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_back", - "page": 42, - "x": 2, - "y": 260, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_front", - "page": 42, - "x": 132, - "y": 260, - "w": 128, - "h": 256 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_side", - "page": 43, - "x": 776, - "y": 1651, - "w": 256, - "h": 128 - }, - { - "key": "things/building/ship/shipengine_back", - "page": 41, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/building/ship/shipreactor_back", - "page": 31, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/special/InfiniteChemreactor", - "page": 31, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/building/special/VanometricPowerCell_east", - "page": 37, - "x": 516, - "y": 260, - "w": 512, - "h": 256 - }, - { - "key": "things/building/special/VanometricPowerCell_north", - "page": 33, - "x": 2, - "y": 516, - "w": 256, - "h": 512 - } - ], - "sources": [ - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstracta", - "size": 15988, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstractb", - "size": 9040, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturegrand/sculpturegrandabstractc", - "size": 15603, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstracta", - "size": 10525, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstractb", - "size": 9133, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturelarge/sculpturelargeabstractc", - "size": 11754, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallabstracta", - "size": 2681, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallabstractb", - "size": 2647, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/sculpturesmall/sculpturesmallbusta", - "size": 2528, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/snowman", - "size": 2071, - "modified": 636301600580000000 - }, - { - "key": "things/building/art/snowman/Snowman_A", - "size": 8405, - "modified": 638886166560000000 - }, - { - "key": "things/building/art/snowman/Snowman_B", - "size": 9196, - "modified": 638886166560000000 - }, - { - "key": "things/building/art/snowman/Snowman_C", - "size": 8056, - "modified": 638886166560000000 - }, - { - "key": "things/building/art/snowman/Snowman_D", - "size": 8080, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingframe/corner", - "size": 8236, - "modified": 636301600580000000 - }, - { - "key": "things/building/buildingframe/tile", - "size": 455, - "modified": 636301600580000000 - }, - { - "key": "things/building/buildingframe/underfield", - "size": 22286, - "modified": 636301600580000000 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidDarklampStanding", - "size": 12260, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidLampStanding", - "size": 12091, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/morbid/MorbidTorchLamp", - "size": 7388, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/morbid/stool/MorbidStool_east", - "size": 7986, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/morbid/stool/MorbidStool_north", - "size": 8077, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/rustic/RusticDarklampStanding", - "size": 15776, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/rustic/RusticLampStanding", - "size": 15086, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/rustic/RusticTorchLamp", - "size": 6956, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreDarklampStanding", - "size": 13234, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreLampStanding", - "size": 12269, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/spikecore/SpikecoreTorchLamp", - "size": 7662, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/techist/TechistDarklampStanding", - "size": 14582, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/techist/TechistLampStanding", - "size": 13615, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/techist/TechistPlantPot", - "size": 6980, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicDarklampStanding", - "size": 11613, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicLampStanding", - "size": 9804, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/totemic/TotemicTorchLamp", - "size": 5368, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/totemic/stool/TotemicStool_east", - "size": 5507, - "modified": 638886166560000000 - }, - { - "key": "things/building/buildingstyles/totemic/stool/TotemicStool_north", - "size": 5610, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/ToyBox", - "size": 11333, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/ToyBox_m", - "size": 4599, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationA", - "size": 7991, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationB", - "size": 7442, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationC", - "size": 5797, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationD", - "size": 14034, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/babydecoration/BabyDecorationE", - "size": 8569, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_east", - "size": 10087, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_eastm", - "size": 6898, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_north", - "size": 9985, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_northm", - "size": 6898, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_south", - "size": 26940, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/blackboard/Blackboard_southm", - "size": 7017, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_east", - "size": 10530, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_eastm", - "size": 7039, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_north", - "size": 9236, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_northm", - "size": 7222, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_south", - "size": 9745, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/crib/Crib_southm", - "size": 6989, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_east", - "size": 21257, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_north", - "size": 17407, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_south", - "size": 17315, - "modified": 638886166560000000 - }, - { - "key": "things/building/childcare/lessondesk/LessonDesk_west", - "size": 20959, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/AnimalFlap_MenuIcon", - "size": 7995, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/AnimalFlap_Mover", - "size": 6035, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/Autodoor_MenuIcon", - "size": 5497, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/Autodoor_Mover", - "size": 4621, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/DoorSimple_MenuIcon", - "size": 4250, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/DoorSimple_Mover", - "size": 3747, - "modified": 638886166560000000 - }, - { - "key": "things/building/door/door_blueprint", - "size": 699, - "modified": 636301600580000000 - }, - { - "key": "things/building/exotic/crashedpoisonshippart", - "size": 16239, - "modified": 636301600580000000 - }, - { - "key": "things/building/exotic/crashedshippart", - "size": 17693, - "modified": 636301600580000000 - }, - { - "key": "things/building/exotic/shipchunk/shipchunka", - "size": 8005, - "modified": 636301600580000000 - }, - { - "key": "things/building/exotic/shipchunk/shipchunkb", - "size": 7587, - "modified": 636301600580000000 - }, - { - "key": "things/building/exotic/shipchunk/shipchunkc", - "size": 8113, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/Armchair_east", - "size": 16250, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Armchair_north", - "size": 12431, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Armchair_south", - "size": 20571, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/DarkLamp", - "size": 10892, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/DiningChair_east", - "size": 10593, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/DiningChair_north", - "size": 10043, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/DiningChair_south", - "size": 10699, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Drape_east", - "size": 28491, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Drape_eastm", - "size": 5133, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Drape_south", - "size": 38127, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Drape_southm", - "size": 6302, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Dresser_east", - "size": 8665, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Dresser_north", - "size": 6902, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Dresser_south", - "size": 7922, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/EndTable_east", - "size": 4968, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/EndTable_north", - "size": 4909, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/EndTable_south", - "size": 5481, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandStele", - "size": 79986, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_east", - "size": 25671, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_eastm", - "size": 7508, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_north", - "size": 36304, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_northm", - "size": 10715, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_south", - "size": 45588, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/GrandThrone_southm", - "size": 10401, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LampStanding", - "size": 10145, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleA", - "size": 25590, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleB", - "size": 40476, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleC", - "size": 25600, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleD", - "size": 34186, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleE", - "size": 27027, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/LargeSteleF", - "size": 25509, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/PlantPot", - "size": 5149, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Stool_east", - "size": 2455, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Stool_north", - "size": 2502, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Throne_east", - "size": 17826, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Throne_north", - "size": 13677, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/Throne_south", - "size": 17470, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/armchair_back", - "size": 4769, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/armchair_front", - "size": 8250, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/armchair_side", - "size": 6767, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/Bed_east", - "size": 8985, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bed_eastm", - "size": 2235, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bed_north", - "size": 8089, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bed_northm", - "size": 2227, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bed_south", - "size": 8398, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bed_southm", - "size": 2291, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_east", - "size": 38639, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_eastm", - "size": 6295, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_north", - "size": 36313, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_northm", - "size": 6282, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_south", - "size": 36441, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/BedrollDouble_southm", - "size": 5735, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_east", - "size": 23540, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_eastm", - "size": 3957, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_north", - "size": 21665, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_northm", - "size": 4229, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_south", - "size": 22498, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/Bedroll_southm", - "size": 4119, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_east", - "size": 12884, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_eastm", - "size": 2459, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_north", - "size": 11411, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_northm", - "size": 2196, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_south", - "size": 9435, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/DoubleBed_southm", - "size": 2156, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_east", - "size": 12656, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_eastm", - "size": 17463, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_north", - "size": 10763, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_northm", - "size": 3257, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_south", - "size": 10855, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/HospitalBed_southm", - "size": 3344, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_east", - "size": 18155, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_eastm", - "size": 2393, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_north", - "size": 18895, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_northm", - "size": 3017, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_south", - "size": 21520, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/RoyalBed_southm", - "size": 3476, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/bed/bed_back", - "size": 4165, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/bed_backm", - "size": 9341, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/bed_front", - "size": 4398, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/bed_frontm", - "size": 9165, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/bed_side", - "size": 4151, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/bed_sidem", - "size": 8773, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_back", - "size": 4024, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_backm", - "size": 7737, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_front", - "size": 4576, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_frontm", - "size": 7805, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_side", - "size": 4618, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/doublebed_sidem", - "size": 7637, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_back", - "size": 4482, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_backm", - "size": 9406, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_front", - "size": 4853, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_frontm", - "size": 9545, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_side", - "size": 4933, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/hospitalbed_sidem", - "size": 9226, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_back", - "size": 6927, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_backm", - "size": 8569, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_front", - "size": 6981, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_frontm", - "size": 9031, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_side", - "size": 6080, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/royalbed_sidem", - "size": 7729, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/sleepspot_back", - "size": 3163, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/sleepspot_front", - "size": 3163, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/bed/sleepspot_side", - "size": 3062, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/diningchair_back", - "size": 5060, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/diningchair_front", - "size": 5994, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/diningchair_side", - "size": 5282, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/shelf_back", - "size": 4349, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/shelf_front", - "size": 4338, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/shelf_side", - "size": 4475, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/stool_back", - "size": 1103, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/stool_side", - "size": 1128, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/tablelong_back", - "size": 17625, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/tablelong_side", - "size": 14938, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/tableshort_back", - "size": 7510, - "modified": 636301600580000000 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_MenuIcon", - "size": 2173, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_east", - "size": 1476, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_north", - "size": 1855, - "modified": 638886166560000000 - }, - { - "key": "things/building/furniture/walllamp/WallLamp_south", - "size": 1148, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/BilliardsTable_east", - "size": 22991, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/BilliardsTable_eastm", - "size": 5660, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/BilliardsTable_north", - "size": 22151, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/BilliardsTable_northm", - "size": 5771, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/FlatscreenTelevision_east", - "size": 3984, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/FlatscreenTelevision_north", - "size": 8972, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/FlatscreenTelevision_south", - "size": 3645, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/GrandPiano_east", - "size": 45563, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/GrandPiano_north", - "size": 48145, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/GrandPiano_south", - "size": 43443, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/GrandPiano_west", - "size": 50093, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/Harpsichord_east", - "size": 25440, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/Harpsichord_north", - "size": 28354, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/Harpsichord_south", - "size": 29687, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/Harpsichord_west", - "size": 22987, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/PokerTable", - "size": 26001, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/PokerTable_m", - "size": 5323, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/ToFix_HoopstoneRing", - "size": 8195, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/billiardstable_back", - "size": 7507, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/billiardstable_backm", - "size": 2500, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/billiardstable_side", - "size": 7233, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/billiardstable_sidem", - "size": 1981, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/chesstable", - "size": 1597, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/flatscreentelevision_back", - "size": 2433, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/flatscreentelevision_front", - "size": 2489, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/flatscreentelevision_side", - "size": 1674, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/harp_south", - "size": 37904, - "modified": 638886166560000000 - }, - { - "key": "things/building/joy/horseshoespin", - "size": 1035, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/megascreentelevision_back", - "size": 5027, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/megascreentelevision_front", - "size": 4441, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/megascreentelevision_side", - "size": 1708, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/telescope", - "size": 2692, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/tubetelevision_back", - "size": 907, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/tubetelevision_front", - "size": 1527, - "modified": 636301600580000000 - }, - { - "key": "things/building/joy/tubetelevision_side", - "size": 936, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/Barricade_Atlas", - "size": 55078, - "modified": 638886166560000000 - }, - { - "key": "things/building/linked/RockFlecked_Atlas", - "size": 119024, - "modified": 638886166560000000 - }, - { - "key": "things/building/linked/Rock_Atlas", - "size": 87431, - "modified": 638886166560000000 - }, - { - "key": "things/building/linked/compactedmachinery_atlas", - "size": 60039, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/powerconduit_atlas", - "size": 27028, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/powerconduit_blueprint_atlas", - "size": 7461, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/powerconduit_menuicon", - "size": 4768, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/rockflecked_atlas_m", - "size": 42843, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/sandbags_atlas", - "size": 399574, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/sandbags_blueprint_atlas", - "size": 184142, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/sandbags_menuicon", - "size": 10877, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wall/wall_atlas_bricks", - "size": 35068, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wall/wall_atlas_planks", - "size": 33615, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wall/wall_atlas_smooth", - "size": 14430, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wall_blueprint_atlas", - "size": 32684, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wallbricks_menuicon", - "size": 1524, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wallplanks_menuicon", - "size": 1468, - "modified": 636301600580000000 - }, - { - "key": "things/building/linked/wallsmooth_menuicon", - "size": 1934, - "modified": 636301600580000000 - }, - { - "key": "things/building/mech/ActivatorCountdown", - "size": 16568, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/ActivatorProximity", - "size": 16202, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/ShieldGeneratorBullet", - "size": 17247, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/ShieldGeneratorMortar", - "size": 18521, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/TurretMechanoid2x2_Base", - "size": 45561, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/TurretMechanoidMini_Base", - "size": 17455, - "modified": 638886166560000000 - }, - { - "key": "things/building/mech/UnstablePowerCell", - "size": 17494, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/AnimusStone", - "size": 11804, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/BandNode", - "size": 33166, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Brazier", - "size": 20440, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Brazier_m", - "size": 3000, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/ClimateAdjuster", - "size": 188886, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/CommsConsole_east", - "size": 37589, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/CommsConsole_north", - "size": 38318, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/CommsConsole_south", - "size": 41224, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/DarkTorch", - "size": 6153, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/DarklightBrazier", - "size": 16802, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/DarklightBrazier_m", - "size": 1611, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Defoliator", - "size": 66571, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/EMIDynamo", - "size": 158127, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/GeneProcessor", - "size": 47541, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/GibbetCageBottom", - "size": 25145, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/GibbetCageTop", - "size": 19101, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechanitorShip", - "size": 108677, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechanitorShipCrashed", - "size": 111992, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandAntenna_east", - "size": 28235, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandAntenna_north", - "size": 25531, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandAntenna_south", - "size": 26522, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandAntenna_west", - "size": 29749, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandDish", - "size": 39587, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandDish_east", - "size": 41887, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandDish_north", - "size": 39838, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandDish_south", - "size": 39587, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MechbandDish_westt", - "size": 41018, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MenuIconWastepackAtomizer", - "size": 12312, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/MultiAnalyzer", - "size": 18968, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/PassiveCooler", - "size": 12392, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/PsychicDroner", - "size": 275093, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/PsychicSuppressor", - "size": 83188, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Redtorch", - "size": 5988, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/SmokeSpewer", - "size": 157912, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Spacedrone", - "size": 195087, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/SunBlocker", - "size": 164229, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/ToxicSpewer", - "size": 176048, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/Urn", - "size": 21518, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_east", - "size": 16836, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_north", - "size": 9063, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizerWindow_south", - "size": 9054, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_east", - "size": 14899, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_north", - "size": 7357, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_BottomLayer_south", - "size": 7275, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_east", - "size": 39205, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_north", - "size": 40005, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WastepackAtomizer_south", - "size": 41189, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/WeatherController", - "size": 296082, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_east", - "size": 7124, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_north", - "size": 5371, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/ancientterminal/AncientTerminal_south", - "size": 6264, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/animalbed/AnimalBed", - "size": 40770, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/animalbed/AnimalSleepBox", - "size": 5120, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/animalbed/animalsleepspot", - "size": 324, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/autobong/Autobong", - "size": 20012, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/autobong/Autobong_m", - "size": 5637, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPodMenuIcon", - "size": 7370, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_east", - "size": 19036, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_north", - "size": 20381, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/biosculpterpod/BiosculpterPod_south", - "size": 22045, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/bonsaitreepot/BonsaiTreePot", - "size": 5793, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/burnbong/BurnBong", - "size": 22114, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/campfire", - "size": 2100, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/cannibalplatter/CannibalPlatter_east", - "size": 113753, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/cannibalplatter/CannibalPlatter_south", - "size": 121604, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/caravanpackingspot", - "size": 402, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/commsconsole", - "size": 11069, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_east", - "size": 17070, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_north", - "size": 22571, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestaccelerator/DeathrestAccelerator_south", - "size": 21717, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_east", - "size": 20055, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_eastm", - "size": 8169, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_north", - "size": 20992, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_northm", - "size": 9032, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_south", - "size": 23061, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/deathrestcasket/DeathrestCasket_southm", - "size": 9052, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_east", - "size": 33602, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_eastm", - "size": 7065, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_north", - "size": 33286, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_northm", - "size": 7075, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_south", - "size": 30669, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/doubleslabbed/DoubleSlabBed_southm", - "size": 7100, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/dropbeacon", - "size": 1674, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/drum/Drum", - "size": 9226, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/drum/Drum_m", - "size": 4618, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/dryadformingpod/DryadFormingPod", - "size": 17078, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/dryadsphere/DryadSphereBack", - "size": 49383, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/dryadsphere/DryadSphereFront", - "size": 43290, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/effigy/Effigy", - "size": 12315, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/firefoampopper", - "size": 1944, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/fungusdarktorch/FungusDarkTorch", - "size": 6505, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodA", - "size": 9322, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodB", - "size": 9382, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/gauranlenprotoseedpod/GauranlenProtoSeedPodC", - "size": 10010, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_east", - "size": 52339, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_north", - "size": 43354, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneassembler/GeneAssembler_south", - "size": 48966, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/genebank/Genebank_east", - "size": 16779, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/genebank/Genebank_north", - "size": 14961, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/genebank/Genebank_south", - "size": 14996, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_east", - "size": 45256, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_north", - "size": 44723, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_south", - "size": 50501, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/geneextractor/GeneExtractor_west", - "size": 45886, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/glucosoidpump/GlucosoidPump_east", - "size": 10928, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/glucosoidpump/GlucosoidPump_south", - "size": 26500, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/graveempty_back", - "size": 14421, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/graveempty_front", - "size": 14029, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/graveempty_side", - "size": 13725, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/gravefull_back", - "size": 18756, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/gravefull_front", - "size": 20375, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/gravefull_side", - "size": 18553, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/groundpenetratingscanner", - "size": 7422, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/growthvat/GrowthVatTop_east", - "size": 5814, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/growthvat/GrowthVatTop_south", - "size": 16547, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/growthvat/GrowthVat_east", - "size": 10810, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/growthvat/GrowthVat_south", - "size": 18500, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_east", - "size": 13797, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_north", - "size": 25542, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_south", - "size": 25331, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemogenamplifier/HemogenAmplifier_west", - "size": 14219, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemopump/Hemopump_east", - "size": 14546, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/hemopump/Hemopump_south", - "size": 22877, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/incenseshrine/IncenseShrine", - "size": 22833, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_east", - "size": 12207, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_north", - "size": 12155, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelpillow/KneelPillow_south", - "size": 11618, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_east", - "size": 8606, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_north", - "size": 8925, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/kneelsheet/KneelSheet_south", - "size": 8586, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/lectern/Lectern_east", - "size": 5765, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/lectern/Lectern_north", - "size": 4353, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/lectern/Lectern_south", - "size": 4542, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/longrangemineralscanner", - "size": 9689, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/marriagespot", - "size": 377, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/moisturepump", - "size": 1023, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineStoneA", - "size": 71460, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineWoodA", - "size": 68744, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/natureshrine_large/LargeNatureShrineWoodB", - "size": 84054, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineStoneA", - "size": 29186, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineWoodA", - "size": 27960, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/natureshrine_small/SmallNatureShrineWoodB", - "size": 26805, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_east", - "size": 20161, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_north", - "size": 24655, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/neuralsupercharger/NeuralSupercharger_south", - "size": 25885, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/partyspot", - "size": 332, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/pew/Pew_east", - "size": 46467, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/pew/Pew_north", - "size": 20243, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/pew/Pew_south", - "size": 20878, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/podlauncher", - "size": 8519, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_east", - "size": 30163, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_north", - "size": 35597, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/psychofluidpump/PsychofluidPump_south", - "size": 35597, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/pyre/Pyre", - "size": 37881, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_east", - "size": 48600, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_eastm", - "size": 20358, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_north", - "size": 45270, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_northm", - "size": 19513, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_south", - "size": 50783, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/reliquary/Reliquary_southm", - "size": 19501, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/sacrificialflag/SacrificialFlag", - "size": 8438, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/sarcophagus_back", - "size": 18659, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/sarcophagus_side", - "size": 8030, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/sarcophagusfull_back", - "size": 10413, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/sarcophagusfull_side", - "size": 7198, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/skullspike/Skullspike", - "size": 7783, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/skullspike/Skullspike_m", - "size": 4053, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_east", - "size": 23163, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_eastm", - "size": 6983, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_north", - "size": 24368, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_northm", - "size": 7037, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_south", - "size": 23262, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/slabbed/SlabBed_southm", - "size": 7037, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_east", - "size": 7060, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_north", - "size": 6837, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/sleepaccelerator/SleepAccelerator_south", - "size": 7208, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_east", - "size": 39578, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_eastm", - "size": 15976, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_north", - "size": 38301, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_northm", - "size": 11511, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_south", - "size": 26172, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/stylingstation/TableStyling_southm", - "size": 9112, - "modified": 638886166560000000 - }, - { - "key": "things/building/misc/tempcontrol/cooler_back", - "size": 1625, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/cooler_front", - "size": 1638, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/cooler_side", - "size": 847, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/heater", - "size": 768, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/vent_back", - "size": 390, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/vent_off_back", - "size": 391, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/vent_off_side", - "size": 484, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/tempcontrol/vent_side", - "size": 337, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/toolcabinet_back", - "size": 3453, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/toolcabinet_side", - "size": 2996, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/torchlamp", - "size": 791, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/vitalsmonitor_back", - "size": 447, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/vitalsmonitor_front", - "size": 855, - "modified": 636301600580000000 - }, - { - "key": "things/building/misc/vitalsmonitor_side", - "size": 716, - "modified": 636301600580000000 - }, - { - "key": "things/building/natural/GlowPod", - "size": 4930, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/Hive", - "size": 42055, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabA", - "size": 13805, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabB", - "size": 13811, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegascarab/CocoonMegascarabC", - "size": 12401, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderA", - "size": 43938, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderB", - "size": 47352, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonmegaspider/CocoonMegaspiderC", - "size": 46356, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeA", - "size": 23606, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeB", - "size": 24030, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/cocoonspelopede/CocoonSpelopedeC", - "size": 17603, - "modified": 638886166560000000 - }, - { - "key": "things/building/natural/collapsedrocks", - "size": 9235, - "modified": 636301600580000000 - }, - { - "key": "things/building/natural/steamgeyser", - "size": 113022, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/ChemfuelPoweredGenerator", - "size": 24549, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/GeothermalPlant", - "size": 133565, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/MechBooster", - "size": 31708, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/SolarCollector", - "size": 35419, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/ToxifierGenerator", - "size": 53773, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/WoodFiredGenerator", - "size": 24168, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/battery_back", - "size": 2793, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/battery_side", - "size": 3350, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/fueledgenerator", - "size": 9589, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/powerswitch", - "size": 1033, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/powerswitch_off", - "size": 976, - "modified": 636301600580000000 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBlades", - "size": 4376, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_east", - "size": 10525, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_north", - "size": 60833, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/watermillgenerator/WatermillGeneratorBody_south", - "size": 55956, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/WindTurbineBlades", - "size": 4833, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_east", - "size": 28022, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_north", - "size": 31445, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/WindTurbineBody_south", - "size": 30454, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/WindTurbine_MenuIcon", - "size": 15705, - "modified": 638886166560000000 - }, - { - "key": "things/building/power/windturbine/windturbinebody", - "size": 5569, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/BasicRecharger_east", - "size": 33088, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/BasicRecharger_north", - "size": 20691, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/BasicRecharger_south", - "size": 21762, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_east", - "size": 17607, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_eastm", - "size": 3411, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_north", - "size": 14113, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_northm", - "size": 2782, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_south", - "size": 9959, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Crematorium_southm", - "size": 2890, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/DeepDrill", - "size": 15105, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/FermentingBarrel_east", - "size": 8623, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/FermentingBarrel_north", - "size": 5688, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Hopper_MenuIcon", - "size": 7023, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Hopper_east", - "size": 6965, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Hopper_north", - "size": 7720, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/Hopper_south", - "size": 6887, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/LampSun", - "size": 8208, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_east", - "size": 82537, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_north", - "size": 74377, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeGlass_south", - "size": 74467, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeTop_east", - "size": 124741, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeTop_north", - "size": 119898, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLargeTop_south", - "size": 119637, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLarge_east", - "size": 187673, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLarge_north", - "size": 175442, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorLarge_south", - "size": 177811, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_east", - "size": 67004, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_north", - "size": 55013, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardGlass_south", - "size": 54798, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardTop_east", - "size": 94867, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardTop_north", - "size": 84466, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandardTop_south", - "size": 84135, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandard_east", - "size": 185039, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandard_north", - "size": 157712, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/MechGestatorStandard_south", - "size": 163419, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/PollutionPump", - "size": 12979, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/StandardRecharger_east", - "size": 61636, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/StandardRecharger_north", - "size": 66153, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/StandardRecharger_south", - "size": 66895, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreEncoder_east", - "size": 34843, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreEncoder_north", - "size": 29719, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreEncoder_south", - "size": 28192, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreRipscanner_east", - "size": 53728, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreRipscanner_north", - "size": 58522, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreRipscanner_south", - "size": 57832, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreSoftscanner_east", - "size": 57798, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreSoftscanner_north", - "size": 60336, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/SubcoreSoftscanner_south", - "size": 59183, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableBrewery_east", - "size": 32526, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableBrewery_north", - "size": 31806, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableBrewery_south", - "size": 32843, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableButcher_east", - "size": 19288, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableButcher_north", - "size": 18327, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableButcher_south", - "size": 18488, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_east", - "size": 24307, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_eastm", - "size": 7526, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_north", - "size": 25267, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_northm", - "size": 7511, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_south", - "size": 24692, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableDrugLab_southm", - "size": 7365, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableMachining_east", - "size": 19078, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableMachining_north", - "size": 17666, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableMachining_south", - "size": 17961, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingElectric_east", - "size": 19543, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingElectric_north", - "size": 24134, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingElectric_south", - "size": 20277, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingFueled_east", - "size": 19535, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingFueled_north", - "size": 21572, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableSmithingFueled_south", - "size": 19248, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_east", - "size": 27110, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_eastm", - "size": 12785, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_north", - "size": 27435, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_northm", - "size": 12480, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_south", - "size": 26909, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveElectric_southm", - "size": 12446, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_east", - "size": 26067, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_eastm", - "size": 12786, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_north", - "size": 26937, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_northm", - "size": 12529, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_south", - "size": 26113, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableStoveFueled_southm", - "size": 12584, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_east", - "size": 21997, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_eastm", - "size": 5473, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_north", - "size": 21285, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_northm", - "size": 5160, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_south", - "size": 21813, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorElectric_southm", - "size": 5193, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_east", - "size": 18328, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_eastm", - "size": 5089, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_north", - "size": 18157, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_northm", - "size": 4710, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_south", - "size": 18020, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/TableTailorHand_southm", - "size": 4628, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_east", - "size": 14519, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_north", - "size": 13559, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/ToFix_NutrientDispenser_south", - "size": 15918, - "modified": 638886166560000000 - }, - { - "key": "things/building/production/componentassemblybench_back", - "size": 23912, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/componentassemblybench_side", - "size": 22399, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/craftingspot", - "size": 332, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/crematorium", - "size": 26094, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/crematorium_m", - "size": 2848, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/electricsmelter_back", - "size": 10440, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/electricsmelter_front", - "size": 10592, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/electricsmelter_side", - "size": 10064, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/fermentingbarrel_back", - "size": 2445, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/fermentingbarrel_side", - "size": 2961, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/hopper", - "size": 497, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/hydroponicsbasin", - "size": 884, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/nutrientdispenser", - "size": 13732, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/refinery", - "size": 18602, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchhitech_back", - "size": 21138, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchhitech_backm", - "size": 5540, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchhitech_side", - "size": 22570, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchhitech_sidem", - "size": 6191, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchsimple_back", - "size": 11753, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchsimple_backm", - "size": 4097, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchsimple_side", - "size": 12731, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/researchbenchsimple_sidem", - "size": 3630, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablebrewery_back", - "size": 12490, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablebrewery_side", - "size": 11384, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablebutcher_back", - "size": 12376, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablebutcher_front", - "size": 12305, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablebutcher_side", - "size": 11985, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabledruglab_back", - "size": 14924, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabledruglab_backm", - "size": 4887, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabledruglab_side", - "size": 13970, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabledruglab_sidem", - "size": 4656, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablemachining_back", - "size": 9353, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablemachining_front", - "size": 9462, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablemachining_side", - "size": 9039, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesculpting_back", - "size": 13265, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesculpting_side", - "size": 12521, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesmithingelectric_back", - "size": 8821, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesmithingelectric_side", - "size": 8438, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesmithingfueled_back", - "size": 8589, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablesmithingfueled_side", - "size": 7584, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestonecutter_back", - "size": 13398, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestonecutter_side", - "size": 13030, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestoveelectric_back", - "size": 12012, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestoveelectric_side", - "size": 11587, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestovefueled_back", - "size": 11390, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tablestovefueled_side", - "size": 9593, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabletailorelectric_back", - "size": 10723, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabletailorelectric_side", - "size": 10867, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabletailorhand_back", - "size": 11676, - "modified": 636301600580000000 - }, - { - "key": "things/building/production/tabletailorhand_side", - "size": 11281, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/AirConditioner", - "size": 21351, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBandNode", - "size": 36749, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_east", - "size": 38112, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_north", - "size": 24658, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBasicRecharger_south", - "size": 26009, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBed_east", - "size": 17744, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBed_north", - "size": 21383, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBed_south", - "size": 20505, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientBustedShipBeacon", - "size": 10854, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_east", - "size": 53967, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_north", - "size": 43711, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsoleOpen_south", - "size": 48877, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsole_east", - "size": 55450, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsole_north", - "size": 45041, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCommsConsole_south", - "size": 50147, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_east", - "size": 23655, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_north", - "size": 29831, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientCryptosleepPod_south", - "size": 30578, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientDisplayBank_east", - "size": 26952, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientDisplayBank_north", - "size": 13903, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientDisplayBank_south", - "size": 19928, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_east", - "size": 7687, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_north", - "size": 5824, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientEnemyTerminal_south", - "size": 6625, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientEquipmentBlocks_east", - "size": 38845, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientEquipmentBlocks_north", - "size": 26145, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_east", - "size": 11922, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_north", - "size": 11891, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrateOpen_south", - "size": 14282, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_east", - "size": 12379, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_north", - "size": 11602, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientHermeticCrate_south", - "size": 14733, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLamp", - "size": 9057, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLargeMechFormer_south", - "size": 111157, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator", - "size": 111157, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_east", - "size": 115941, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_north", - "size": 108832, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLargeMechGestator_south", - "size": 111157, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLockerBank_east", - "size": 20984, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLockerBank_north", - "size": 12563, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientLockerBank_south", - "size": 22528, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMechGestator_east", - "size": 90288, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMechGestator_north", - "size": 11350, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMechGestator_south", - "size": 11599, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_east", - "size": 18578, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_north", - "size": 19602, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientMegacannonBarrel_south", - "size": 22783, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientOperatingTable_east", - "size": 23867, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientOperatingTable_north", - "size": 28118, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientOperatingTable_south", - "size": 28357, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_east", - "size": 14339, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_north", - "size": 13295, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrateOpen_south", - "size": 14118, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_east", - "size": 15887, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_north", - "size": 14993, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSecurityCrate_south", - "size": 15703, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_east", - "size": 72881, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_north", - "size": 72053, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientStandardRecharger_south", - "size": 74234, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientStorageCylinder_east", - "size": 31985, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientStorageCylinder_south", - "size": 12484, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSystemRack_east", - "size": 12891, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientSystemRack_north", - "size": 17789, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientToxifierGenerator", - "size": 50679, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarspiderRemains", - "size": 157280, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarsprinterRemains", - "size": 103581, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerClaw_east", - "size": 14305, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerClaw_south", - "size": 17532, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerFoot", - "size": 30852, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerLeg_east", - "size": 48648, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerLeg_south", - "size": 57938, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerShell", - "size": 90952, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_east", - "size": 121742, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_north", - "size": 134048, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/AncientWarwalkerTorso_south", - "size": 135471, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/CrateLarge", - "size": 6775, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/CrateLong", - "size": 6574, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/CrateSmall", - "size": 5337, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/Fridge", - "size": 13007, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/JetEngine", - "size": 33269, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/KitchenSink", - "size": 12570, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/LargeEngineBlock", - "size": 23452, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/PipelineSection", - "size": 31211, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/PodCar", - "size": 50908, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/Postbox", - "size": 10982, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RuinedTank", - "size": 117191, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarA_east", - "size": 77384, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarA_north", - "size": 81072, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarA_south", - "size": 80272, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarB_east", - "size": 66754, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarB_north", - "size": 66397, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarB_south", - "size": 68182, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarC_east", - "size": 82010, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarC_north", - "size": 79150, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarC_south", - "size": 73364, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarD_east", - "size": 71302, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarD_north", - "size": 78028, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarD_south", - "size": 76214, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarE_east", - "size": 62240, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarE_north", - "size": 60716, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarE_south", - "size": 61635, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarFrame_east", - "size": 52823, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarFrame_north", - "size": 38437, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarFrame_south", - "size": 41109, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarTruck_east", - "size": 70206, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarTruck_north", - "size": 56340, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedCarTruck_south", - "size": 67184, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_east", - "size": 58960, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_north", - "size": 56664, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/RustedMilitaryJeep_south", - "size": 62836, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/Stove", - "size": 15891, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/VendingMachine", - "size": 13828, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientbarrel/Barrel", - "size": 10386, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelA", - "size": 10386, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelB", - "size": 10320, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientbarrel/BarrelC", - "size": 11520, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientconcretebarrier/ancientconcretebarriera", - "size": 2858, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/ancientconcretebarrier/ancientconcretebarrierb", - "size": 2616, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/ancientcrate/CrateA", - "size": 7151, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientcrate/CrateB", - "size": 4228, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientcrate/CrateC", - "size": 5075, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderCannon", - "size": 73530, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderHead", - "size": 138459, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/AncientExostriderMidsection", - "size": 156746, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegA", - "size": 56875, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegB", - "size": 56922, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientexostrider/ancientexostriderleg/ExostriderLegC", - "size": 48775, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeA", - "size": 10663, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeB", - "size": 9848, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientfuelnode/AncientUnstableFuelNodeC", - "size": 10751, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorA", - "size": 43470, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorB", - "size": 40246, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientgenerator/AncientGeneratorC", - "size": 43350, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlampposta", - "size": 3706, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlamppostb", - "size": 4061, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/ancientlamppost/ancientlamppostc", - "size": 3970, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusA", - "size": 16559, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusB", - "size": 11783, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusC", - "size": 14025, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusD", - "size": 15801, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusE", - "size": 10027, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusF", - "size": 16047, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusG", - "size": 14334, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusH", - "size": 14436, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusI", - "size": 11786, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmechdetritus/AncientMechDetritusJ", - "size": 13171, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodA", - "size": 28231, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodB", - "size": 31606, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientmegacannontripod/AncientMegacannonTripodC", - "size": 28754, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireA", - "size": 14417, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireB", - "size": 13762, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireC", - "size": 14227, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireD", - "size": 13339, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientrazorwire/AncientRazorWireE", - "size": 14425, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretA", - "size": 10270, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretB", - "size": 11369, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretC", - "size": 11072, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancientsecurityturret/AncientSecurityTurretD", - "size": 10995, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapA", - "size": 17981, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapB", - "size": 22278, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/ancienttanktrap/AncientTankTrapC", - "size": 18063, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/concretebarrier", - "size": 461, - "modified": 636301600580000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellA", - "size": 21260, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellB", - "size": 13961, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellC", - "size": 14683, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellD", - "size": 15830, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellE", - "size": 16496, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellF", - "size": 18102, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellG", - "size": 15762, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellH", - "size": 15308, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellI", - "size": 22722, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechanoidshell/DestroyedMechanoidShellJ", - "size": 16203, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconA", - "size": 18695, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconB", - "size": 18658, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/destroyedmechdropbeacon/DestroyedMechDropBeaconC", - "size": 19870, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelA", - "size": 36519, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelB", - "size": 40500, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelC", - "size": 26873, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelD", - "size": 38472, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelE", - "size": 32078, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/giantwheel/GiantWheelF", - "size": 35687, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockA", - "size": 13946, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockB", - "size": 14566, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/rustedengineblock/RustedEngineBlockC", - "size": 14351, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartA", - "size": 12029, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartB", - "size": 14304, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartC", - "size": 16139, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartD", - "size": 15616, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/shoppingcart/ShoppingCartE", - "size": 11426, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelA", - "size": 14338, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelB", - "size": 14855, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelC", - "size": 11104, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelD", - "size": 14020, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelE", - "size": 13886, - "modified": 638886166560000000 - }, - { - "key": "things/building/ruins/wheel/WheelF", - "size": 15282, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDAntigrainWarhead", - "size": 1747, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDDeadlife", - "size": 4276, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDEMP", - "size": 1276, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDFirefoam", - "size": 883, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDHighExplosive", - "size": 1370, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDIncendiary", - "size": 733, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/IEDTox", - "size": 5664, - "modified": 638886166560000000 - }, - { - "key": "things/building/security/deadfallarmed", - "size": 886, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/deadfallunarmed", - "size": 2014, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/iedbomb", - "size": 1025, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretimprovised", - "size": 5258, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretimprovised_top", - "size": 691, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretmortarbase", - "size": 8356, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretmortarbomb_top", - "size": 1734, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretmortaremp_top", - "size": 1744, - "modified": 636301600580000000 - }, - { - "key": "things/building/security/turretmortarincendiary_top", - "size": 1766, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_east", - "size": 27416, - "modified": 638886166560000000 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_north", - "size": 58224, - "modified": 638886166560000000 - }, - { - "key": "things/building/ship/ShipCryptosleepCasket_south", - "size": 60027, - "modified": 638886166560000000 - }, - { - "key": "things/building/ship/shipbeam_back", - "size": 17560, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipcomputercore_back", - "size": 5911, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_back", - "size": 8550, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_front", - "size": 8501, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipcryptosleepcasket_side", - "size": 8813, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipengine_back", - "size": 11128, - "modified": 636301600580000000 - }, - { - "key": "things/building/ship/shipreactor_back", - "size": 67309, - "modified": 636301600580000000 - }, - { - "key": "things/building/special/InfiniteChemreactor", - "size": 42916, - "modified": 638886166560000000 - }, - { - "key": "things/building/special/VanometricPowerCell_east", - "size": 11752, - "modified": 638886166560000000 - }, - { - "key": "things/building/special/VanometricPowerCell_north", - "size": 11932, - "modified": 638886166560000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.0.png b/src/LittleSim/Assets/Atlases/things.building.atlas.0.png deleted file mode 100644 index cbd1f6e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.1.png b/src/LittleSim/Assets/Atlases/things.building.atlas.1.png deleted file mode 100644 index 2ab73c3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.10.png b/src/LittleSim/Assets/Atlases/things.building.atlas.10.png deleted file mode 100644 index 0e7f4d4..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.10.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.11.png b/src/LittleSim/Assets/Atlases/things.building.atlas.11.png deleted file mode 100644 index ea4c247..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.11.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.12.png b/src/LittleSim/Assets/Atlases/things.building.atlas.12.png deleted file mode 100644 index e6a6936..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.12.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.13.png b/src/LittleSim/Assets/Atlases/things.building.atlas.13.png deleted file mode 100644 index b30e1c5..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.13.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.14.png b/src/LittleSim/Assets/Atlases/things.building.atlas.14.png deleted file mode 100644 index 5f465f8..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.14.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.15.png b/src/LittleSim/Assets/Atlases/things.building.atlas.15.png deleted file mode 100644 index f5570d4..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.15.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.16.png b/src/LittleSim/Assets/Atlases/things.building.atlas.16.png deleted file mode 100644 index 090879d..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.16.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.17.png b/src/LittleSim/Assets/Atlases/things.building.atlas.17.png deleted file mode 100644 index 0852c61..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.17.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.18.png b/src/LittleSim/Assets/Atlases/things.building.atlas.18.png deleted file mode 100644 index 6d129c0..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.18.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.19.png b/src/LittleSim/Assets/Atlases/things.building.atlas.19.png deleted file mode 100644 index db5b3a0..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.19.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.2.png b/src/LittleSim/Assets/Atlases/things.building.atlas.2.png deleted file mode 100644 index 0a06da9..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.2.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.20.png b/src/LittleSim/Assets/Atlases/things.building.atlas.20.png deleted file mode 100644 index 9e79355..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.20.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.21.png b/src/LittleSim/Assets/Atlases/things.building.atlas.21.png deleted file mode 100644 index bbc250a..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.21.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.22.png b/src/LittleSim/Assets/Atlases/things.building.atlas.22.png deleted file mode 100644 index 7015a3d..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.22.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.23.png b/src/LittleSim/Assets/Atlases/things.building.atlas.23.png deleted file mode 100644 index e3a4579..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.23.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.24.png b/src/LittleSim/Assets/Atlases/things.building.atlas.24.png deleted file mode 100644 index ae8cd64..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.24.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.25.png b/src/LittleSim/Assets/Atlases/things.building.atlas.25.png deleted file mode 100644 index 728995e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.25.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.26.png b/src/LittleSim/Assets/Atlases/things.building.atlas.26.png deleted file mode 100644 index ea6b84f..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.26.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.27.png b/src/LittleSim/Assets/Atlases/things.building.atlas.27.png deleted file mode 100644 index 92181b8..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.27.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.28.png b/src/LittleSim/Assets/Atlases/things.building.atlas.28.png deleted file mode 100644 index 741880e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.28.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.29.png b/src/LittleSim/Assets/Atlases/things.building.atlas.29.png deleted file mode 100644 index ab7e89d..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.29.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.3.png b/src/LittleSim/Assets/Atlases/things.building.atlas.3.png deleted file mode 100644 index 85b4fab..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.3.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.30.png b/src/LittleSim/Assets/Atlases/things.building.atlas.30.png deleted file mode 100644 index a8b9894..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.30.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.31.png b/src/LittleSim/Assets/Atlases/things.building.atlas.31.png deleted file mode 100644 index 34d545b..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.31.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.32.png b/src/LittleSim/Assets/Atlases/things.building.atlas.32.png deleted file mode 100644 index ec34b01..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.32.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.33.png b/src/LittleSim/Assets/Atlases/things.building.atlas.33.png deleted file mode 100644 index 143df55..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.33.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.34.png b/src/LittleSim/Assets/Atlases/things.building.atlas.34.png deleted file mode 100644 index 2576295..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.34.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.35.png b/src/LittleSim/Assets/Atlases/things.building.atlas.35.png deleted file mode 100644 index 9b4a184..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.35.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.36.png b/src/LittleSim/Assets/Atlases/things.building.atlas.36.png deleted file mode 100644 index 360f7d2..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.36.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.37.png b/src/LittleSim/Assets/Atlases/things.building.atlas.37.png deleted file mode 100644 index 0f1716e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.37.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.38.png b/src/LittleSim/Assets/Atlases/things.building.atlas.38.png deleted file mode 100644 index d938367..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.38.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.39.png b/src/LittleSim/Assets/Atlases/things.building.atlas.39.png deleted file mode 100644 index 3be3137..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.39.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.4.png b/src/LittleSim/Assets/Atlases/things.building.atlas.4.png deleted file mode 100644 index 069f8a3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.4.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.40.png b/src/LittleSim/Assets/Atlases/things.building.atlas.40.png deleted file mode 100644 index dd97974..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.40.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.41.png b/src/LittleSim/Assets/Atlases/things.building.atlas.41.png deleted file mode 100644 index 9563bb1..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.41.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.42.png b/src/LittleSim/Assets/Atlases/things.building.atlas.42.png deleted file mode 100644 index 459824d..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.42.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.43.png b/src/LittleSim/Assets/Atlases/things.building.atlas.43.png deleted file mode 100644 index fc6f04c..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.43.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.44.png b/src/LittleSim/Assets/Atlases/things.building.atlas.44.png deleted file mode 100644 index ff950d2..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.44.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.5.png b/src/LittleSim/Assets/Atlases/things.building.atlas.5.png deleted file mode 100644 index a7917d4..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.5.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.6.png b/src/LittleSim/Assets/Atlases/things.building.atlas.6.png deleted file mode 100644 index 7f80666..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.6.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.7.png b/src/LittleSim/Assets/Atlases/things.building.atlas.7.png deleted file mode 100644 index 9b0a8bf..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.7.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.8.png b/src/LittleSim/Assets/Atlases/things.building.atlas.8.png deleted file mode 100644 index 321f789..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.8.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.building.atlas.9.png b/src/LittleSim/Assets/Atlases/things.building.atlas.9.png deleted file mode 100644 index 5b24ae9..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.building.atlas.9.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.filth.atlas b/src/LittleSim/Assets/Atlases/things.filth.atlas deleted file mode 100644 index 283f81e..0000000 --- a/src/LittleSim/Assets/Atlases/things.filth.atlas +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 2, - "name": "things.filth", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.filth.atlas.0.png", - "width": 2048, - "height": 256 - } - ], - "regions": [ - { - "key": "things/filth/ash/asha", - "page": 0, - "x": 132, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/ash/ashb", - "page": 0, - "x": 198, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/ash/ashc", - "page": 0, - "x": 264, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/corpsebile/bilea", - "page": 0, - "x": 330, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/corpsebile/bileb", - "page": 0, - "x": 396, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/corpsebile/bilec", - "page": 0, - "x": 462, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/grainy/grainya", - "page": 0, - "x": 528, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/liquidfuel/liquidfuela", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/filth/poolsoft/poolsofta", - "page": 0, - "x": 594, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/poolsoft/poolsoftb", - "page": 0, - "x": 660, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/poolsoft/poolsoftc", - "page": 0, - "x": 726, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/rubblebuilding/slagbitsa", - "page": 0, - "x": 792, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/rubblerock/rubblea", - "page": 0, - "x": 858, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/rubblesandbags/sandbagsa", - "page": 0, - "x": 924, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/rubbleslag/slagbitsa", - "page": 0, - "x": 990, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/spatter/spattera", - "page": 0, - "x": 1056, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/spatter/spatterb", - "page": 0, - "x": 1122, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/filth/spatter/spatterc", - "page": 0, - "x": 1188, - "y": 2, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "things/filth/ash/asha", - "size": 4145, - "modified": 636301600580000000 - }, - { - "key": "things/filth/ash/ashb", - "size": 4637, - "modified": 636301600580000000 - }, - { - "key": "things/filth/ash/ashc", - "size": 3689, - "modified": 636301600580000000 - }, - { - "key": "things/filth/corpsebile/bilea", - "size": 5679, - "modified": 636301600580000000 - }, - { - "key": "things/filth/corpsebile/bileb", - "size": 5680, - "modified": 636301600580000000 - }, - { - "key": "things/filth/corpsebile/bilec", - "size": 6020, - "modified": 636301600580000000 - }, - { - "key": "things/filth/grainy/grainya", - "size": 4794, - "modified": 636301600580000000 - }, - { - "key": "things/filth/liquidfuel/liquidfuela", - "size": 8488, - "modified": 636301600580000000 - }, - { - "key": "things/filth/poolsoft/poolsofta", - "size": 2173, - "modified": 636301600580000000 - }, - { - "key": "things/filth/poolsoft/poolsoftb", - "size": 2461, - "modified": 636301600580000000 - }, - { - "key": "things/filth/poolsoft/poolsoftc", - "size": 2539, - "modified": 636301600580000000 - }, - { - "key": "things/filth/rubblebuilding/slagbitsa", - "size": 3367, - "modified": 636301600580000000 - }, - { - "key": "things/filth/rubblerock/rubblea", - "size": 3008, - "modified": 636301600580000000 - }, - { - "key": "things/filth/rubblesandbags/sandbagsa", - "size": 3996, - "modified": 636301600580000000 - }, - { - "key": "things/filth/rubbleslag/slagbitsa", - "size": 3205, - "modified": 636301600580000000 - }, - { - "key": "things/filth/spatter/spattera", - "size": 1962, - "modified": 636301600580000000 - }, - { - "key": "things/filth/spatter/spatterb", - "size": 1556, - "modified": 636301600580000000 - }, - { - "key": "things/filth/spatter/spatterc", - "size": 1893, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.filth.atlas.0.png b/src/LittleSim/Assets/Atlases/things.filth.atlas.0.png deleted file mode 100644 index 225b2a0..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.filth.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.gas.atlas b/src/LittleSim/Assets/Atlases/things.gas.atlas deleted file mode 100644 index 41df7bb..0000000 --- a/src/LittleSim/Assets/Atlases/things.gas.atlas +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 2, - "name": "things.gas", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.gas.atlas.0.png", - "width": 256, - "height": 256 - } - ], - "regions": [ - { - "key": "things/gas/puff", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - } - ], - "sources": [ - { - "key": "things/gas/puff", - "size": 10539, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.gas.atlas.0.png b/src/LittleSim/Assets/Atlases/things.gas.atlas.0.png deleted file mode 100644 index e96a173..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.gas.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas b/src/LittleSim/Assets/Atlases/things.item.atlas deleted file mode 100644 index 5089abf..0000000 --- a/src/LittleSim/Assets/Atlases/things.item.atlas +++ /dev/null @@ -1,4834 +0,0 @@ -{ - "version": 2, - "name": "things.item", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.item.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.item.atlas.1.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.item.atlas.2.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.item.atlas.3.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.item.atlas.4.png", - "width": 2048, - "height": 1024 - } - ], - "regions": [ - { - "key": "things/item/artifact/PsychicAnimalPulser", - "page": 2, - "x": 776, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/artifact/PsychicInsanityLance", - "page": 2, - "x": 906, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/artifact/PsychicShockLance", - "page": 2, - "x": 1036, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/artifact/PsychicSoothePulser", - "page": 2, - "x": 1166, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/bodypart/artificialorgan", - "page": 4, - "x": 1042, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/bodypart/organ", - "page": 4, - "x": 1108, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowA", - "page": 2, - "x": 1296, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowB", - "page": 2, - "x": 1426, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowC", - "page": 2, - "x": 1556, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowD", - "page": 2, - "x": 1686, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowE", - "page": 2, - "x": 1816, - "y": 1544, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowF", - "page": 2, - "x": 2, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisA", - "page": 2, - "x": 132, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisB", - "page": 2, - "x": 262, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisC", - "page": 2, - "x": 392, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisD", - "page": 2, - "x": 522, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkstone/RockLowA", - "page": 2, - "x": 652, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkstone/RockLowB", - "page": 2, - "x": 782, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkstone/RockLowC", - "page": 2, - "x": 912, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/chunk/chunkstone/RockLowD", - "page": 2, - "x": 1042, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/ambrosia/Ambrosia_a", - "page": 2, - "x": 1172, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/ambrosia/Ambrosia_b", - "page": 2, - "x": 1302, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/beer/Beer_a", - "page": 2, - "x": 1432, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/beer/Beer_b", - "page": 2, - "x": 1562, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/beer/Beer_c", - "page": 2, - "x": 1692, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/flake/flake_a", - "page": 4, - "x": 1174, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/drug/flake/flake_b", - "page": 4, - "x": 1240, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/drug/flake/flake_c", - "page": 4, - "x": 1306, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/drug/gojuice/GoJuice_a", - "page": 2, - "x": 1822, - "y": 1802, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/gojuice/GoJuice_b", - "page": 3, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/joint/Joint_a", - "page": 3, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/joint/Joint_b", - "page": 3, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/joint/Joint_c", - "page": 3, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/luciferium/Luciferium_a", - "page": 3, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/luciferium/Luciferium_b", - "page": 3, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/penoxycyline/Penoxycyline_a", - "page": 3, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/penoxycyline/Penoxycyline_b", - "page": 3, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/tea/Tea_a", - "page": 3, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/tea/Tea_b", - "page": 3, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/tea/Tea_c", - "page": 3, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/wakeup/WakeUp_a", - "page": 3, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/wakeup/WakeUp_b", - "page": 3, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/yayo/Yayo_a", - "page": 3, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/yayo/Yayo_b", - "page": 3, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/drug/yayo/Yayo_c", - "page": 3, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/dye/Dye_a", - "page": 3, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/dye/Dye_b", - "page": 3, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/dye/Dye_c", - "page": 3, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Axe", - "page": 3, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/BreachAxe", - "page": 3, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Club", - "page": 3, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Gladius", - "page": 3, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Ikwa", - "page": 3, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Knife", - "page": 3, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Longsword", - "page": 3, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Mace", - "page": 3, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Monosword", - "page": 3, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/PlasmaSword", - "page": 3, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/PsyfocusStaff", - "page": 3, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Spear", - "page": 3, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/Warhammer", - "page": 3, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/ZeusHammer", - "page": 3, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponmelee/shiv", - "page": 4, - "x": 1372, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/equipment/weaponranged/AssaultRifle", - "page": 3, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Autopistol", - "page": 3, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/BeamGraser", - "page": 3, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/BoltActionRifle", - "page": 3, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/BowGreat", - "page": 3, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/BowRecurve", - "page": 3, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/BowShort", - "page": 3, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChainShotgun", - "page": 3, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterHeavy", - "page": 3, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterLight", - "page": 3, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterTurret", - "page": 3, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChargeLance", - "page": 3, - "x": 1822, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ChargeRifle", - "page": 3, - "x": 2, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/DoomsdayLauncher", - "page": 3, - "x": 132, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/EMPGrenades", - "page": 3, - "x": 262, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/EMPLauncher", - "page": 3, - "x": 392, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Flamebow", - "page": 3, - "x": 522, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Flamethrower", - "page": 3, - "x": 652, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Grenades", - "page": 3, - "x": 782, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/HeavySMG", - "page": 3, - "x": 912, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/HellcatRifle", - "page": 3, - "x": 1042, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/HellsphereCannon", - "page": 3, - "x": 1172, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/IncendiaryLauncher", - "page": 3, - "x": 1302, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/InfernoCannon", - "page": 3, - "x": 1432, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/LMG", - "page": 3, - "x": 1562, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/MachinePistol", - "page": 3, - "x": 1692, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/MiniFlameblaster", - "page": 3, - "x": 1822, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/MiniShotgun", - "page": 3, - "x": 2, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Minigun", - "page": 3, - "x": 132, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Molotov", - "page": 3, - "x": 262, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/NeedleGun", - "page": 3, - "x": 392, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/NeedleLauncher", - "page": 3, - "x": 522, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/NerveSpiker", - "page": 3, - "x": 652, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Pilum", - "page": 3, - "x": 782, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Revolver", - "page": 3, - "x": 912, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/RocketLauncher", - "page": 3, - "x": 1042, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Shotgun", - "page": 3, - "x": 1172, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/Slugthrower", - "page": 3, - "x": 1302, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/SmallSlugGun", - "page": 3, - "x": 1432, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/SmokeLauncher", - "page": 3, - "x": 1562, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/SniperRifle", - "page": 3, - "x": 1692, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/SpinerGun", - "page": 3, - "x": 1822, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ThumpCannon", - "page": 3, - "x": 2, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ToxGrenades", - "page": 3, - "x": 132, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ToxbombLauncher", - "page": 3, - "x": 262, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/ToxicNeedleGun", - "page": 3, - "x": 392, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/equipment/weaponranged/pistol", - "page": 4, - "x": 1438, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/equipment/weaponranged/survivalrifle", - "page": 4, - "x": 1504, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster", - "page": 2, - "x": 1544, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east", - "page": 2, - "x": 2, - "y": 1544, - "w": 256, - "h": 256 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north", - "page": 2, - "x": 260, - "y": 1544, - "w": 256, - "h": 256 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south", - "page": 2, - "x": 518, - "y": 1544, - "w": 256, - "h": 256 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_a", - "page": 3, - "x": 522, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_b", - "page": 3, - "x": 652, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_c", - "page": 3, - "x": 782, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/implant/implant", - "page": 4, - "x": 1570, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/meal/fine", - "page": 4, - "x": 1636, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/meal/lavish", - "page": 4, - "x": 1702, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/meal/nutrientpaste", - "page": 4, - "x": 1768, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/meal/simple", - "page": 4, - "x": 1834, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/meal/survivalpack", - "page": 4, - "x": 1900, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/minified/CrateFront", - "page": 3, - "x": 912, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/poluxseed/PoluxSeed_a", - "page": 3, - "x": 1042, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/poluxseed/PoluxSeed_b", - "page": 3, - "x": 1172, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/poluxseed/PoluxSeed_c", - "page": 3, - "x": 1302, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertArk", - "page": 3, - "x": 1432, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertBox", - "page": 3, - "x": 1562, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertCube", - "page": 3, - "x": 1692, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertCup", - "page": 3, - "x": 1822, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertFragment", - "page": 3, - "x": 2, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertPendant", - "page": 3, - "x": 132, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertSwordHandle", - "page": 3, - "x": 262, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/relic/RelicInertTablet", - "page": 3, - "x": 392, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/ArchiteCapsule", - "page": 3, - "x": 522, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/Chemfuel", - "page": 3, - "x": 652, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/DeathrestCapacitySerum", - "page": 3, - "x": 782, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/Milk", - "page": 3, - "x": 912, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/NanostructuringChip", - "page": 3, - "x": 1042, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/PowerfocusChip", - "page": 3, - "x": 1172, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/SignalChip", - "page": 3, - "x": 1302, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/SubcoreBasic", - "page": 3, - "x": 1432, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/SubcoreHigh", - "page": 3, - "x": 1562, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/SubcoreRegular", - "page": 3, - "x": 1692, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/Wool", - "page": 3, - "x": 1822, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/Wort", - "page": 3, - "x": 2, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_a", - "page": 3, - "x": 132, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_b", - "page": 3, - "x": 262, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_c", - "page": 3, - "x": 392, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a", - "page": 4, - "x": 1966, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b", - "page": 4, - "x": 2, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/eggoval/eggoval_a", - "page": 4, - "x": 68, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/eggoval/eggoval_b", - "page": 4, - "x": 134, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/egground/egground_a", - "page": 4, - "x": 200, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/egground/egground_b", - "page": 4, - "x": 266, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/animalproductraw/insectjelly", - "page": 4, - "x": 332, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/babyfood/BabyFood_a", - "page": 3, - "x": 522, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/babyfood/BabyFood_b", - "page": 3, - "x": 652, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/babyfood/BabyFood_c", - "page": 3, - "x": 782, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_a", - "page": 3, - "x": 912, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_b", - "page": 3, - "x": 1042, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_c", - "page": 3, - "x": 1172, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/chocolate", - "page": 4, - "x": 398, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/cloth", - "page": 4, - "x": 464, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/cloth/Cloth_a", - "page": 3, - "x": 1302, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/cloth/Cloth_b", - "page": 3, - "x": 1432, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/cloth/Cloth_c", - "page": 3, - "x": 1562, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/component", - "page": 4, - "x": 530, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/componentindustrial/ComponentIndustrial", - "page": 3, - "x": 1692, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/componentspacer/ComponentSpacer", - "page": 3, - "x": 1822, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_a", - "page": 3, - "x": 2, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_b", - "page": 3, - "x": 132, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_c", - "page": 3, - "x": 262, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/gold", - "page": 4, - "x": 596, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/gold/Gold_a", - "page": 3, - "x": 392, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/gold/Gold_b", - "page": 3, - "x": 522, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/gold/Gold_c", - "page": 3, - "x": 652, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_a", - "page": 3, - "x": 782, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_b", - "page": 3, - "x": 912, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_c", - "page": 3, - "x": 1042, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hyperweave", - "page": 4, - "x": 662, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_a", - "page": 3, - "x": 1172, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_b", - "page": 3, - "x": 1302, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_c", - "page": 3, - "x": 1432, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/jade", - "page": 4, - "x": 728, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/jade/Jade_a", - "page": 3, - "x": 1562, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/jade/Jade_b", - "page": 3, - "x": 1692, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/jade/Jade_c", - "page": 3, - "x": 1822, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/kibble", - "page": 4, - "x": 794, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/leather/Leather_a", - "page": 3, - "x": 2, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/leather/Leather_b", - "page": 3, - "x": 132, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/leather/Leather_c", - "page": 3, - "x": 262, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/meatfoodraw/meatbig", - "page": 4, - "x": 860, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/meatfoodraw/meathuman", - "page": 4, - "x": 926, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/meatfoodraw/meatsmall", - "page": 4, - "x": 992, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/medicine", - "page": 4, - "x": 1058, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_a", - "page": 3, - "x": 392, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_b", - "page": 3, - "x": 522, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_c", - "page": 3, - "x": 652, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a", - "page": 3, - "x": 782, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b", - "page": 3, - "x": 912, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c", - "page": 3, - "x": 1042, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_a", - "page": 3, - "x": 1172, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_b", - "page": 3, - "x": 1302, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_c", - "page": 3, - "x": 1432, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/medicineglitterworld", - "page": 4, - "x": 1124, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/medicineherbal", - "page": 4, - "x": 1190, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/metal/metala", - "page": 4, - "x": 1256, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/metal/metalb", - "page": 4, - "x": 1322, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/metal/metalc", - "page": 4, - "x": 1388, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/neutroamine", - "page": 4, - "x": 1454, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_a", - "page": 3, - "x": 1562, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_b", - "page": 3, - "x": 1692, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_c", - "page": 3, - "x": 1822, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/pemmican", - "page": 4, - "x": 1520, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/pemmican/Pemmican_a", - "page": 3, - "x": 2, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/pemmican/Pemmican_b", - "page": 3, - "x": 132, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/pemmican/Pemmican_c", - "page": 3, - "x": 262, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/AgaveFruit", - "page": 3, - "x": 392, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Berries", - "page": 3, - "x": 522, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Corn", - "page": 3, - "x": 652, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Hops", - "page": 3, - "x": 782, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Potatoes", - "page": 3, - "x": 912, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/PsychoidLeaves", - "page": 3, - "x": 1042, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/RawFungus", - "page": 3, - "x": 1172, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Rice", - "page": 3, - "x": 1302, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/SmokeleafLeaves", - "page": 3, - "x": 1432, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/Toxipotato", - "page": 3, - "x": 1562, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_a", - "page": 4, - "x": 1586, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_b", - "page": 4, - "x": 1652, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_c", - "page": 4, - "x": 1718, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/plasteel", - "page": 4, - "x": 1784, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/plasteel/Plasteel_a", - "page": 3, - "x": 1692, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plasteel/Plasteel_b", - "page": 3, - "x": 1822, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/plasteel/Plasteel_c", - "page": 3, - "x": 2, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell", - "page": 4, - "x": 1850, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a", - "page": 3, - "x": 132, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b", - "page": 3, - "x": 262, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c", - "page": 3, - "x": 392, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_a", - "page": 3, - "x": 522, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_b", - "page": 3, - "x": 652, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_c", - "page": 3, - "x": 782, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_a", - "page": 3, - "x": 912, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_b", - "page": 3, - "x": 1042, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_c", - "page": 3, - "x": 1172, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a", - "page": 3, - "x": 1302, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b", - "page": 3, - "x": 1432, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c", - "page": 3, - "x": 1562, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_a", - "page": 3, - "x": 1692, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_b", - "page": 3, - "x": 1822, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_c", - "page": 3, - "x": 2, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_a", - "page": 3, - "x": 132, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_b", - "page": 3, - "x": 262, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_c", - "page": 3, - "x": 392, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/silver", - "page": 4, - "x": 1916, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/silver/Silver_a", - "page": 3, - "x": 522, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/silver/Silver_b", - "page": 3, - "x": 652, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/silver/Silver_c", - "page": 3, - "x": 782, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/special/GoldenCube", - "page": 3, - "x": 912, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/steel/Steel_a", - "page": 3, - "x": 1042, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/steel/Steel_b", - "page": 3, - "x": 1172, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/steel/Steel_c", - "page": 3, - "x": 1302, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/stoneblocks", - "page": 4, - "x": 1982, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_a", - "page": 3, - "x": 1432, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_b", - "page": 3, - "x": 1562, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_c", - "page": 3, - "x": 1692, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/synthread", - "page": 4, - "x": 2, - "y": 458, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/synthread/Synthread_a", - "page": 3, - "x": 1822, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/synthread/Synthread_b", - "page": 3, - "x": 2, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/synthread/Synthread_c", - "page": 3, - "x": 132, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_a", - "page": 3, - "x": 262, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_b", - "page": 3, - "x": 392, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_c", - "page": 3, - "x": 522, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/uranium", - "page": 4, - "x": 68, - "y": 458, - "w": 64, - "h": 64 - }, - { - "key": "things/item/resource/uranium/Uranium_a", - "page": 3, - "x": 652, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/uranium/Uranium_b", - "page": 3, - "x": 782, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/uranium/Uranium_c", - "page": 3, - "x": 912, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/wastepack/Wastepack_a", - "page": 3, - "x": 1042, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/wastepack/Wastepack_b", - "page": 3, - "x": 1172, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/wastepack/Wastepack_c", - "page": 3, - "x": 1302, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/woodlog/WoodLog_a", - "page": 3, - "x": 1432, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/woodlog/WoodLog_b", - "page": 3, - "x": 1562, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/resource/woodlog/WoodLog_c", - "page": 3, - "x": 1692, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/skull/Skull_a", - "page": 3, - "x": 1822, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/item/skull/Skull_b", - "page": 3, - "x": 2, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/skull/Skull_c", - "page": 3, - "x": 132, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/AIPersonaCore", - "page": 3, - "x": 262, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/Embryo", - "page": 3, - "x": 392, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/MechanitorComplexMap", - "page": 3, - "x": 522, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/Ovum", - "page": 3, - "x": 652, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/SubpersonaCoreTechprof", - "page": 3, - "x": 782, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/Xenogerm", - "page": 3, - "x": 912, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/elephanttusk", - "page": 4, - "x": 134, - "y": 458, - "w": 64, - "h": 64 - }, - { - "key": "things/item/special/genepack/Genepack_a", - "page": 3, - "x": 1042, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/genepack/Genepack_b", - "page": 3, - "x": 1172, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/genepack/Genepack_c", - "page": 3, - "x": 1302, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/genepack/Genepack_d", - "page": 3, - "x": 1432, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/genepack/Genepack_e", - "page": 3, - "x": 1562, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/special/neurotrainer", - "page": 4, - "x": 200, - "y": 458, - "w": 64, - "h": 64 - }, - { - "key": "things/item/special/thrumbohorn", - "page": 4, - "x": 266, - "y": 458, - "w": 64, - "h": 64 - }, - { - "key": "things/item/unfinished/UnfinishedApparel", - "page": 3, - "x": 1692, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedBasicSubcore", - "page": 3, - "x": 1822, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedBelt", - "page": 4, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedComponent", - "page": 4, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedGun", - "page": 4, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedHealth", - "page": 4, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedMusicalInstrument", - "page": 4, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedSculpture", - "page": 4, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedTechArmor", - "page": 4, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/unfinished/UnfinishedWeapon", - "page": 4, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/fine/Fine_a", - "page": 0, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_b", - "page": 0, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_c", - "page": 0, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_a", - "page": 0, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_b", - "page": 0, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_c", - "page": 0, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_a", - "page": 0, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_b", - "page": 0, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_c", - "page": 0, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_a", - "page": 4, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_b", - "page": 4, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_c", - "page": 4, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_a", - "page": 4, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_b", - "page": 4, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_c", - "page": 4, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_a", - "page": 1, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_b", - "page": 1, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_c", - "page": 1, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_a", - "page": 1, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_b", - "page": 1, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_c", - "page": 1, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_a", - "page": 1, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_b", - "page": 1, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_c", - "page": 1, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_a", - "page": 4, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_b", - "page": 4, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_c", - "page": 4, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_a", - "page": 4, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_b", - "page": 4, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_c", - "page": 4, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_a", - "page": 2, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_b", - "page": 2, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_c", - "page": 2, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_a", - "page": 2, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_b", - "page": 2, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_c", - "page": 2, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_a", - "page": 2, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_b", - "page": 2, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_c", - "page": 2, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/item/vte_meal/simple/Simple_a", - "page": 4, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_b", - "page": 4, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_c", - "page": 4, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_a", - "page": 4, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_b", - "page": 4, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_c", - "page": 4, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_a", - "page": 4, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_b", - "page": 4, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_c", - "page": 4, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_a", - "page": 4, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_b", - "page": 4, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_c", - "page": 4, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_a", - "page": 4, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_b", - "page": 4, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_c", - "page": 4, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_a", - "page": 4, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_b", - "page": 4, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_c", - "page": 4, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - } - ], - "sources": [ - { - "key": "things/item/artifact/PsychicAnimalPulser", - "size": 6692, - "modified": 638886166560000000 - }, - { - "key": "things/item/artifact/PsychicInsanityLance", - "size": 4746, - "modified": 638886166560000000 - }, - { - "key": "things/item/artifact/PsychicShockLance", - "size": 6018, - "modified": 638886166560000000 - }, - { - "key": "things/item/artifact/PsychicSoothePulser", - "size": 6419, - "modified": 638886166560000000 - }, - { - "key": "things/item/bodypart/artificialorgan", - "size": 770, - "modified": 636301600580000000 - }, - { - "key": "things/item/bodypart/organ", - "size": 777, - "modified": 636301600580000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowA", - "size": 5057, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowB", - "size": 4213, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowC", - "size": 4772, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowD", - "size": 4710, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowE", - "size": 6950, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/alt_chunkstone/RockLowF", - "size": 6170, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisA", - "size": 8432, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisB", - "size": 10013, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisC", - "size": 9192, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkslag/MetalDebrisD", - "size": 9730, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkstone/RockLowA", - "size": 5057, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkstone/RockLowB", - "size": 4213, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkstone/RockLowC", - "size": 4772, - "modified": 638886166560000000 - }, - { - "key": "things/item/chunk/chunkstone/RockLowD", - "size": 4710, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/ambrosia/Ambrosia_a", - "size": 5187, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/ambrosia/Ambrosia_b", - "size": 12985, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/beer/Beer_a", - "size": 3007, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/beer/Beer_b", - "size": 4802, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/beer/Beer_c", - "size": 6453, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/flake/flake_a", - "size": 522, - "modified": 636301600580000000 - }, - { - "key": "things/item/drug/flake/flake_b", - "size": 624, - "modified": 636301600580000000 - }, - { - "key": "things/item/drug/flake/flake_c", - "size": 1228, - "modified": 636301600580000000 - }, - { - "key": "things/item/drug/gojuice/GoJuice_a", - "size": 2761, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/gojuice/GoJuice_b", - "size": 5070, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/joint/Joint_a", - "size": 4367, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/joint/Joint_b", - "size": 7680, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/joint/Joint_c", - "size": 16205, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/luciferium/Luciferium_a", - "size": 6131, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/luciferium/Luciferium_b", - "size": 8371, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/penoxycyline/Penoxycyline_a", - "size": 6831, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/penoxycyline/Penoxycyline_b", - "size": 9288, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/tea/Tea_a", - "size": 4518, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/tea/Tea_b", - "size": 8324, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/tea/Tea_c", - "size": 13514, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/wakeup/WakeUp_a", - "size": 6196, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/wakeup/WakeUp_b", - "size": 9188, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/yayo/Yayo_a", - "size": 4820, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/yayo/Yayo_b", - "size": 3786, - "modified": 638886166560000000 - }, - { - "key": "things/item/drug/yayo/Yayo_c", - "size": 4896, - "modified": 638886166560000000 - }, - { - "key": "things/item/dye/Dye_a", - "size": 6948, - "modified": 638886166560000000 - }, - { - "key": "things/item/dye/Dye_b", - "size": 10130, - "modified": 638886166560000000 - }, - { - "key": "things/item/dye/Dye_c", - "size": 12994, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Axe", - "size": 3701, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/BreachAxe", - "size": 5147, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Club", - "size": 5738, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Gladius", - "size": 3438, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Ikwa", - "size": 2808, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Knife", - "size": 3023, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Longsword", - "size": 2963, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Mace", - "size": 2734, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Monosword", - "size": 4114, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/PlasmaSword", - "size": 4833, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/PsyfocusStaff", - "size": 4488, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Spear", - "size": 3566, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/Warhammer", - "size": 4098, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/ZeusHammer", - "size": 6407, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponmelee/shiv", - "size": 405, - "modified": 636301600580000000 - }, - { - "key": "things/item/equipment/weaponranged/AssaultRifle", - "size": 4881, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Autopistol", - "size": 3946, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/BeamGraser", - "size": 4470, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/BoltActionRifle", - "size": 3914, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/BowGreat", - "size": 5306, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/BowRecurve", - "size": 5730, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/BowShort", - "size": 4910, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChainShotgun", - "size": 4530, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterHeavy", - "size": 9318, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterLight", - "size": 2538, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChargeBlasterTurret", - "size": 8345, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChargeLance", - "size": 5329, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ChargeRifle", - "size": 4536, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/DoomsdayLauncher", - "size": 8070, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/EMPGrenades", - "size": 7414, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/EMPLauncher", - "size": 6002, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Flamebow", - "size": 7305, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Flamethrower", - "size": 5570, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Grenades", - "size": 7529, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/HeavySMG", - "size": 5314, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/HellcatRifle", - "size": 5731, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/HellsphereCannon", - "size": 9297, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/IncendiaryLauncher", - "size": 5834, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/InfernoCannon", - "size": 5868, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/LMG", - "size": 4099, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/MachinePistol", - "size": 4094, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/MiniFlameblaster", - "size": 6366, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/MiniShotgun", - "size": 4429, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Minigun", - "size": 4629, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Molotov", - "size": 8435, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/NeedleGun", - "size": 4893, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/NeedleLauncher", - "size": 4587, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/NerveSpiker", - "size": 9151, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Pilum", - "size": 3025, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Revolver", - "size": 4461, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/RocketLauncher", - "size": 5529, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Shotgun", - "size": 3766, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/Slugthrower", - "size": 3657, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/SmallSlugGun", - "size": 3657, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/SmokeLauncher", - "size": 5731, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/SniperRifle", - "size": 4059, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/SpinerGun", - "size": 3952, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ThumpCannon", - "size": 8408, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ToxGrenades", - "size": 7541, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ToxbombLauncher", - "size": 6266, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/ToxicNeedleGun", - "size": 5479, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponranged/pistol", - "size": 869, - "modified": 636301600580000000 - }, - { - "key": "things/item/equipment/weaponranged/survivalrifle", - "size": 880, - "modified": 636301600580000000 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster", - "size": 8330, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_east", - "size": 7013, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_north", - "size": 7047, - "modified": 638886166560000000 - }, - { - "key": "things/item/equipment/weaponspecial/orbitaltargetermechcluster/OrbitalTargeterMechCluster_south", - "size": 6116, - "modified": 638886166560000000 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_a", - "size": 10255, - "modified": 638886166560000000 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_b", - "size": 15560, - "modified": 638886166560000000 - }, - { - "key": "things/item/gauranlenseed/GauranlenSeed_c", - "size": 17504, - "modified": 638886166560000000 - }, - { - "key": "things/item/implant/implant", - "size": 776, - "modified": 636301600580000000 - }, - { - "key": "things/item/meal/fine", - "size": 2171, - "modified": 636301600580000000 - }, - { - "key": "things/item/meal/lavish", - "size": 2328, - "modified": 636301600580000000 - }, - { - "key": "things/item/meal/nutrientpaste", - "size": 1116, - "modified": 636301600580000000 - }, - { - "key": "things/item/meal/simple", - "size": 1706, - "modified": 636301600580000000 - }, - { - "key": "things/item/meal/survivalpack", - "size": 900, - "modified": 636301600580000000 - }, - { - "key": "things/item/minified/CrateFront", - "size": 2398, - "modified": 638886166560000000 - }, - { - "key": "things/item/poluxseed/PoluxSeed_a", - "size": 11346, - "modified": 638886166560000000 - }, - { - "key": "things/item/poluxseed/PoluxSeed_b", - "size": 14813, - "modified": 638886166560000000 - }, - { - "key": "things/item/poluxseed/PoluxSeed_c", - "size": 17287, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertArk", - "size": 7584, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertBox", - "size": 7336, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertCube", - "size": 5287, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertCup", - "size": 8175, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertFragment", - "size": 7067, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertPendant", - "size": 11676, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertSwordHandle", - "size": 4446, - "modified": 638886166560000000 - }, - { - "key": "things/item/relic/RelicInertTablet", - "size": 5152, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/ArchiteCapsule", - "size": 10563, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/Chemfuel", - "size": 3480, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/DeathrestCapacitySerum", - "size": 7535, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/Milk", - "size": 9679, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/NanostructuringChip", - "size": 10002, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/PowerfocusChip", - "size": 6847, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/SignalChip", - "size": 5642, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/SubcoreBasic", - "size": 20077, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/SubcoreHigh", - "size": 18527, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/SubcoreRegular", - "size": 18443, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/Wool", - "size": 10766, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/Wort", - "size": 7324, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_a", - "size": 6016, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_b", - "size": 9151, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/alt_steel/Old-Steel_c", - "size": 10095, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/animalproductraw/eggbirdsmall/eggsmall_a", - "size": 534, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/eggbirdsmall/eggsmall_b", - "size": 1718, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/eggoval/eggoval_a", - "size": 607, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/eggoval/eggoval_b", - "size": 2276, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/egground/egground_a", - "size": 557, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/egground/egground_b", - "size": 2080, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/animalproductraw/insectjelly", - "size": 2794, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/babyfood/BabyFood_a", - "size": 6364, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/babyfood/BabyFood_b", - "size": 10184, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/babyfood/BabyFood_c", - "size": 13344, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_a", - "size": 5878, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_b", - "size": 11890, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/bioferrite/Bioferrite_c", - "size": 15879, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/chocolate", - "size": 1160, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/cloth", - "size": 1842, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/cloth/Cloth_a", - "size": 5253, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/cloth/Cloth_b", - "size": 8066, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/cloth/Cloth_c", - "size": 11548, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/component", - "size": 2625, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/componentindustrial/ComponentIndustrial", - "size": 11299, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/componentspacer/ComponentSpacer", - "size": 6873, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_a", - "size": 5515, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_b", - "size": 10107, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/devilstrand/Devilstrand_c", - "size": 9721, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/gold", - "size": 2165, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/gold/Gold_a", - "size": 6178, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/gold/Gold_b", - "size": 9774, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/gold/Gold_c", - "size": 10654, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_a", - "size": 8027, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_b", - "size": 9826, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hemogenpack/HemogenPack_c", - "size": 11496, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hyperweave", - "size": 1922, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_a", - "size": 4724, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_b", - "size": 10105, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/hyperweave/Hyperweave_c", - "size": 12695, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/jade", - "size": 2475, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/jade/Jade_a", - "size": 4671, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/jade/Jade_b", - "size": 8444, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/jade/Jade_c", - "size": 11488, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/kibble", - "size": 2723, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/leather/Leather_a", - "size": 4976, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/leather/Leather_b", - "size": 7190, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/leather/Leather_c", - "size": 9187, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/meatfoodraw/meatbig", - "size": 1710, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/meatfoodraw/meathuman", - "size": 1880, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/meatfoodraw/meatsmall", - "size": 2302, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/medicine", - "size": 892, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_a", - "size": 8697, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_b", - "size": 9892, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineherbal/MedicineHerbal_c", - "size": 10896, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_a", - "size": 3768, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_b", - "size": 4714, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineindustrial/MedicineIndustrial_c", - "size": 5441, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_a", - "size": 3656, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_b", - "size": 4174, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicine/medicineultratech/MedicineUltratech_c", - "size": 4850, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/medicineglitterworld", - "size": 1018, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/medicineherbal", - "size": 1799, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/metal/metala", - "size": 2818, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/metal/metalb", - "size": 3279, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/metal/metalc", - "size": 2725, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/neutroamine", - "size": 676, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_a", - "size": 6403, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_b", - "size": 9806, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/neutroamine/Neutroamine_c", - "size": 12304, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/pemmican", - "size": 2290, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/pemmican/Pemmican_a", - "size": 5252, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/pemmican/Pemmican_b", - "size": 9543, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/pemmican/Pemmican_c", - "size": 12756, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/AgaveFruit", - "size": 13939, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Berries", - "size": 11145, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Corn", - "size": 14260, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Hops", - "size": 13416, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Potatoes", - "size": 12844, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/PsychoidLeaves", - "size": 16806, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/RawFungus", - "size": 14448, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Rice", - "size": 11605, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/SmokeleafLeaves", - "size": 15829, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/Toxipotato", - "size": 14750, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_a", - "size": 1168, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_b", - "size": 2455, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/plantfoodraw/hay/hay_c", - "size": 2521, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/plasteel", - "size": 2844, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/plasteel/Plasteel_a", - "size": 4391, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plasteel/Plasteel_b", - "size": 6851, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/plasteel/Plasteel_c", - "size": 8959, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell", - "size": 1758, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_a", - "size": 4823, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_b", - "size": 6643, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_antigrainwarhead/Shell_Antigrain_c", - "size": 8128, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_a", - "size": 6163, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_b", - "size": 8990, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_emp/Shell_EMP_c", - "size": 11889, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_a", - "size": 5053, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_b", - "size": 7270, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_firefoam/Shell_Firefoam_c", - "size": 9373, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_a", - "size": 5083, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_b", - "size": 7140, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_highexplosive/Shell_HighExplosive_c", - "size": 9632, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_a", - "size": 4555, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_b", - "size": 6413, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_incendiary/Shell_Incendiary_c", - "size": 8462, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_a", - "size": 6771, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_b", - "size": 8867, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/shell/shell_toxic/Shell_Toxic_c", - "size": 11894, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/silver", - "size": 1726, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/silver/Silver_a", - "size": 5057, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/silver/Silver_b", - "size": 7977, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/silver/Silver_c", - "size": 10479, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/special/GoldenCube", - "size": 6748, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/steel/Steel_a", - "size": 4774, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/steel/Steel_b", - "size": 9078, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/steel/Steel_c", - "size": 13058, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/stoneblocks", - "size": 1626, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_a", - "size": 3923, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_b", - "size": 5378, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/stoneblocks/StoneBlocks_c", - "size": 5986, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/synthread", - "size": 1689, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/synthread/Synthread_a", - "size": 4352, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/synthread/Synthread_b", - "size": 8089, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/synthread/Synthread_c", - "size": 11629, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_a", - "size": 7682, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_b", - "size": 10714, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/twistedmeat/TwistedMeat_c", - "size": 13859, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/uranium", - "size": 2620, - "modified": 636301600580000000 - }, - { - "key": "things/item/resource/uranium/Uranium_a", - "size": 4305, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/uranium/Uranium_b", - "size": 7388, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/uranium/Uranium_c", - "size": 9229, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/wastepack/Wastepack_a", - "size": 10132, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/wastepack/Wastepack_b", - "size": 15401, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/wastepack/Wastepack_c", - "size": 20824, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/woodlog/WoodLog_a", - "size": 5093, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/woodlog/WoodLog_b", - "size": 7937, - "modified": 638886166560000000 - }, - { - "key": "things/item/resource/woodlog/WoodLog_c", - "size": 9135, - "modified": 638886166560000000 - }, - { - "key": "things/item/skull/Skull_a", - "size": 8346, - "modified": 638886166560000000 - }, - { - "key": "things/item/skull/Skull_b", - "size": 10976, - "modified": 638886166560000000 - }, - { - "key": "things/item/skull/Skull_c", - "size": 13609, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/AIPersonaCore", - "size": 8679, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/Embryo", - "size": 12637, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/MechanitorComplexMap", - "size": 13558, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/Ovum", - "size": 12125, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/SubpersonaCoreTechprof", - "size": 10458, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/Xenogerm", - "size": 11880, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/elephanttusk", - "size": 1126, - "modified": 636301600580000000 - }, - { - "key": "things/item/special/genepack/Genepack_a", - "size": 10879, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/genepack/Genepack_b", - "size": 11235, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/genepack/Genepack_c", - "size": 11614, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/genepack/Genepack_d", - "size": 11885, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/genepack/Genepack_e", - "size": 10803, - "modified": 638886166560000000 - }, - { - "key": "things/item/special/neurotrainer", - "size": 842, - "modified": 636301600580000000 - }, - { - "key": "things/item/special/thrumbohorn", - "size": 1386, - "modified": 636301600580000000 - }, - { - "key": "things/item/unfinished/UnfinishedApparel", - "size": 10463, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedBasicSubcore", - "size": 8627, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedBelt", - "size": 5950, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedComponent", - "size": 6254, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedGun", - "size": 5455, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedHealth", - "size": 11298, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedMusicalInstrument", - "size": 14667, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedSculpture", - "size": 21411, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedTechArmor", - "size": 13811, - "modified": 638886166560000000 - }, - { - "key": "things/item/unfinished/UnfinishedWeapon", - "size": 8553, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_a", - "size": 26291, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_b", - "size": 26460, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_c", - "size": 26593, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_a", - "size": 26188, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_b", - "size": 26421, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_m_c", - "size": 26781, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_a", - "size": 32138, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_b", - "size": 32179, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fine/Fine_v_c", - "size": 32336, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_a", - "size": 4133, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_b", - "size": 4303, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/finemeat/FineMeat_c", - "size": 4357, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_a", - "size": 4309, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_b", - "size": 4488, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/fineveg/FineVeg_c", - "size": 4552, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_a", - "size": 41711, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_b", - "size": 41942, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_c", - "size": 41868, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_a", - "size": 41851, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_b", - "size": 42001, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_m_c", - "size": 42301, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_a", - "size": 45029, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_b", - "size": 45126, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavish/Lavish_v_c", - "size": 45516, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_a", - "size": 6068, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_b", - "size": 6173, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishmeat/LavishMeat_c", - "size": 6299, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_a", - "size": 6298, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_b", - "size": 6563, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/lavishveg/LavishVeg_c", - "size": 6518, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_a", - "size": 14580, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_b", - "size": 14606, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_c", - "size": 14846, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_a", - "size": 14035, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_b", - "size": 14462, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_m_c", - "size": 14657, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_a", - "size": 14373, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_b", - "size": 14115, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/nutrientpaste/NutrientPaste_v_c", - "size": 14279, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_a", - "size": 3762, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_b", - "size": 3957, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_c", - "size": 4004, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_a", - "size": 6440, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_b", - "size": 6554, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_m_c", - "size": 6722, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_a", - "size": 6343, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_b", - "size": 6462, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/simple/Simple_v_c", - "size": 6543, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_a", - "size": 4622, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_b", - "size": 4764, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_c", - "size": 5299, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_a", - "size": 5242, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_b", - "size": 5408, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_m_c", - "size": 5853, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_a", - "size": 6024, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_b", - "size": 6271, - "modified": 638886166560000000 - }, - { - "key": "things/item/vte_meal/survivalpack/SurvivalPack_v_c", - "size": 6747, - "modified": 638886166560000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas.0.png b/src/LittleSim/Assets/Atlases/things.item.atlas.0.png deleted file mode 100644 index 85963d0..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.item.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas.1.png b/src/LittleSim/Assets/Atlases/things.item.atlas.1.png deleted file mode 100644 index 6cd834a..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.item.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas.2.png b/src/LittleSim/Assets/Atlases/things.item.atlas.2.png deleted file mode 100644 index fa9f997..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.item.atlas.2.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas.3.png b/src/LittleSim/Assets/Atlases/things.item.atlas.3.png deleted file mode 100644 index e5c855d..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.item.atlas.3.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.item.atlas.4.png b/src/LittleSim/Assets/Atlases/things.item.atlas.4.png deleted file mode 100644 index 4dfb9cc..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.item.atlas.4.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.mote.atlas b/src/LittleSim/Assets/Atlases/things.mote.atlas deleted file mode 100644 index 05799eb..0000000 --- a/src/LittleSim/Assets/Atlases/things.mote.atlas +++ /dev/null @@ -1,875 +0,0 @@ -{ - "version": 2, - "name": "things.mote", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.mote.atlas.0.png", - "width": 2048, - "height": 512 - } - ], - "regions": [ - { - "key": "things/mote/airpuff", - "page": 0, - "x": 1042, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/berserkbit", - "page": 0, - "x": 1108, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/blastdry", - "page": 0, - "x": 1174, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/blastemp", - "page": 0, - "x": 1240, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/blastextinguisher", - "page": 0, - "x": 1306, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/blastflame", - "page": 0, - "x": 1372, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/clean", - "page": 0, - "x": 1438, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/clearsnow", - "page": 0, - "x": 1504, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/colonistattacking", - "page": 0, - "x": 1570, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/colonistfleeing", - "page": 0, - "x": 776, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/cookbit", - "page": 0, - "x": 1636, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/drunkbubble", - "page": 0, - "x": 1702, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/dustpuff", - "page": 0, - "x": 906, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/electricalspark", - "page": 0, - "x": 1768, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/explosionflash", - "page": 0, - "x": 1036, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/feedbackattack", - "page": 0, - "x": 1166, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/feedbackequip", - "page": 0, - "x": 1296, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/feedbackgoto", - "page": 0, - "x": 1426, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/fireglow", - "page": 0, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/mote/foodbitmeat", - "page": 0, - "x": 1834, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/foodbitvegetarian", - "page": 0, - "x": 1900, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/footprint", - "page": 0, - "x": 1966, - "y": 260, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/harvest", - "page": 0, - "x": 1556, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/healingcross", - "page": 0, - "x": 1686, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/heart", - "page": 0, - "x": 2, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/horseshoe", - "page": 0, - "x": 68, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/incapicon", - "page": 0, - "x": 1816, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/interactionarrow", - "page": 0, - "x": 134, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/lightningglow", - "page": 0, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/mote/manhunterbit", - "page": 0, - "x": 200, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/metapuff", - "page": 0, - "x": 2, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/microsparks", - "page": 0, - "x": 132, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/shotflash", - "page": 0, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/mote/shothit_dirt", - "page": 0, - "x": 262, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/shothit_spark", - "page": 0, - "x": 392, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/sleepz", - "page": 0, - "x": 266, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/smoke", - "page": 0, - "x": 522, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/sow", - "page": 0, - "x": 332, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/sparkflash", - "page": 0, - "x": 652, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/sparkthrown", - "page": 0, - "x": 1916, - "y": 390, - "w": 32, - "h": 32 - }, - { - "key": "things/mote/speech", - "page": 0, - "x": 782, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/speechsymbols/animalchat", - "page": 0, - "x": 398, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/breakup", - "page": 0, - "x": 464, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/buildrapport", - "page": 0, - "x": 530, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/chitchat", - "page": 0, - "x": 596, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/deeptalk", - "page": 0, - "x": 662, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/insult", - "page": 0, - "x": 728, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/kindwords", - "page": 0, - "x": 794, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/marriageproposal", - "page": 0, - "x": 860, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/nuzzle", - "page": 0, - "x": 926, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/prisonerrecruit", - "page": 0, - "x": 992, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/romance", - "page": 0, - "x": 1058, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/slight", - "page": 0, - "x": 1124, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/speechsymbols/trainattempt", - "page": 0, - "x": 1190, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/stonebit", - "page": 0, - "x": 1256, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/stun", - "page": 0, - "x": 1322, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/temproof", - "page": 0, - "x": 1388, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thought", - "page": 0, - "x": 912, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/mote/thoughtsymbol/enemy", - "page": 0, - "x": 1454, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thoughtsymbol/food", - "page": 0, - "x": 1520, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thoughtsymbol/genericbad", - "page": 0, - "x": 1586, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thoughtsymbol/genericgood", - "page": 0, - "x": 1652, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thoughtsymbol/skull", - "page": 0, - "x": 1718, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/thoughtsymbol/sleepz", - "page": 0, - "x": 1784, - "y": 390, - "w": 64, - "h": 64 - }, - { - "key": "things/mote/transparent", - "page": 0, - "x": 1950, - "y": 390, - "w": 1, - "h": 1 - }, - { - "key": "things/mote/vomitbit", - "page": 0, - "x": 1850, - "y": 390, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "things/mote/airpuff", - "size": 2311, - "modified": 636301600580000000 - }, - { - "key": "things/mote/berserkbit", - "size": 1439, - "modified": 636301600580000000 - }, - { - "key": "things/mote/blastdry", - "size": 3024, - "modified": 636301600580000000 - }, - { - "key": "things/mote/blastemp", - "size": 4827, - "modified": 636301600580000000 - }, - { - "key": "things/mote/blastextinguisher", - "size": 2832, - "modified": 636301600580000000 - }, - { - "key": "things/mote/blastflame", - "size": 3169, - "modified": 636301600580000000 - }, - { - "key": "things/mote/clean", - "size": 2480, - "modified": 636301600580000000 - }, - { - "key": "things/mote/clearsnow", - "size": 2821, - "modified": 636301600580000000 - }, - { - "key": "things/mote/colonistattacking", - "size": 874, - "modified": 636301600580000000 - }, - { - "key": "things/mote/colonistfleeing", - "size": 3008, - "modified": 636301600580000000 - }, - { - "key": "things/mote/cookbit", - "size": 1539, - "modified": 636301600580000000 - }, - { - "key": "things/mote/drunkbubble", - "size": 2360, - "modified": 636301600580000000 - }, - { - "key": "things/mote/dustpuff", - "size": 12348, - "modified": 636301600580000000 - }, - { - "key": "things/mote/electricalspark", - "size": 3354, - "modified": 636301600580000000 - }, - { - "key": "things/mote/explosionflash", - "size": 5258, - "modified": 636301600580000000 - }, - { - "key": "things/mote/feedbackattack", - "size": 2191, - "modified": 636301600580000000 - }, - { - "key": "things/mote/feedbackequip", - "size": 4305, - "modified": 636301600580000000 - }, - { - "key": "things/mote/feedbackgoto", - "size": 3091, - "modified": 636301600580000000 - }, - { - "key": "things/mote/fireglow", - "size": 25022, - "modified": 636301600580000000 - }, - { - "key": "things/mote/foodbitmeat", - "size": 2785, - "modified": 636301600580000000 - }, - { - "key": "things/mote/foodbitvegetarian", - "size": 2198, - "modified": 636301600580000000 - }, - { - "key": "things/mote/footprint", - "size": 485, - "modified": 636301600580000000 - }, - { - "key": "things/mote/harvest", - "size": 6743, - "modified": 636301600580000000 - }, - { - "key": "things/mote/healingcross", - "size": 852, - "modified": 636301600580000000 - }, - { - "key": "things/mote/heart", - "size": 1454, - "modified": 636301600580000000 - }, - { - "key": "things/mote/horseshoe", - "size": 988, - "modified": 636301600580000000 - }, - { - "key": "things/mote/incapicon", - "size": 2097, - "modified": 636301600580000000 - }, - { - "key": "things/mote/interactionarrow", - "size": 1342, - "modified": 636301600580000000 - }, - { - "key": "things/mote/lightningglow", - "size": 14508, - "modified": 636301600580000000 - }, - { - "key": "things/mote/manhunterbit", - "size": 1531, - "modified": 636301600580000000 - }, - { - "key": "things/mote/metapuff", - "size": 12410, - "modified": 636301600580000000 - }, - { - "key": "things/mote/microsparks", - "size": 1457, - "modified": 636301600580000000 - }, - { - "key": "things/mote/shotflash", - "size": 22390, - "modified": 636301600580000000 - }, - { - "key": "things/mote/shothit_dirt", - "size": 7071, - "modified": 636301600580000000 - }, - { - "key": "things/mote/shothit_spark", - "size": 5989, - "modified": 636301600580000000 - }, - { - "key": "things/mote/sleepz", - "size": 1251, - "modified": 636301600580000000 - }, - { - "key": "things/mote/smoke", - "size": 11391, - "modified": 636301600580000000 - }, - { - "key": "things/mote/sow", - "size": 2543, - "modified": 636301600580000000 - }, - { - "key": "things/mote/sparkflash", - "size": 9626, - "modified": 636301600580000000 - }, - { - "key": "things/mote/sparkthrown", - "size": 706, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speech", - "size": 2493, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/animalchat", - "size": 2868, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/breakup", - "size": 2043, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/buildrapport", - "size": 2364, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/chitchat", - "size": 1911, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/deeptalk", - "size": 2460, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/insult", - "size": 2440, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/kindwords", - "size": 2232, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/marriageproposal", - "size": 2320, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/nuzzle", - "size": 2762, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/prisonerrecruit", - "size": 1048, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/romance", - "size": 1451, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/slight", - "size": 2117, - "modified": 636301600580000000 - }, - { - "key": "things/mote/speechsymbols/trainattempt", - "size": 2707, - "modified": 636301600580000000 - }, - { - "key": "things/mote/stonebit", - "size": 1478, - "modified": 636301600580000000 - }, - { - "key": "things/mote/stun", - "size": 1557, - "modified": 636301600580000000 - }, - { - "key": "things/mote/temproof", - "size": 1808, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thought", - "size": 2994, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/enemy", - "size": 1991, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/food", - "size": 1641, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/genericbad", - "size": 2224, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/genericgood", - "size": 2325, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/skull", - "size": 1460, - "modified": 636301600580000000 - }, - { - "key": "things/mote/thoughtsymbol/sleepz", - "size": 1528, - "modified": 636301600580000000 - }, - { - "key": "things/mote/transparent", - "size": 120, - "modified": 636301600580000000 - }, - { - "key": "things/mote/vomitbit", - "size": 2191, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.mote.atlas.0.png b/src/LittleSim/Assets/Atlases/things.mote.atlas.0.png deleted file mode 100644 index fd9eaa9..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.mote.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas b/src/LittleSim/Assets/Atlases/things.pawn.atlas deleted file mode 100644 index eba9c34..0000000 --- a/src/LittleSim/Assets/Atlases/things.pawn.atlas +++ /dev/null @@ -1,27780 +0,0 @@ -{ - "version": 2, - "name": "things.pawn", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.pawn.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.1.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.2.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.3.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.4.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.5.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.6.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.7.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.8.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.9.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.10.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.11.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.12.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.13.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.14.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.15.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.16.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.17.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.18.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.19.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.20.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.21.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.22.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.23.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.24.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.25.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.26.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.27.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.28.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.29.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.30.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.31.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.32.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.33.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.34.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.35.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.36.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.37.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.pawn.atlas.38.png", - "width": 2048, - "height": 1024 - } - ], - "regions": [ - { - "key": "things/pawn/animal/alpaca/Alpaca_east", - "page": 8, - "x": 516, - "y": 516, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/Alpaca_north", - "page": 8, - "x": 774, - "y": 516, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/Alpaca_south", - "page": 8, - "x": 1032, - "y": 516, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_back", - "page": 8, - "x": 1290, - "y": 516, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_front", - "page": 8, - "x": 1548, - "y": 516, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_side", - "page": 8, - "x": 2, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_back", - "page": 8, - "x": 260, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_front", - "page": 8, - "x": 518, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_side", - "page": 8, - "x": 776, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bear/Bear_east", - "page": 8, - "x": 1034, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bear/Bear_north", - "page": 8, - "x": 1292, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bear/Bear_south", - "page": 8, - "x": 1550, - "y": 1030, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bear/bear_back", - "page": 35, - "x": 773, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/bear/bear_front", - "page": 35, - "x": 903, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/bear/bear_side", - "page": 35, - "x": 1033, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/beaver/beaver_back", - "page": 35, - "x": 1163, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/beaver/beaver_front", - "page": 35, - "x": 1293, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/beaver/beaver_side", - "page": 35, - "x": 1423, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/bison/BisonPack_east", - "page": 8, - "x": 2, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bison/BisonPack_north", - "page": 8, - "x": 260, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/bison/Bison_east", - "page": 0, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/bison/Bison_north", - "page": 0, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/bison/Bison_south", - "page": 0, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/bison/Dessicated_Bison_east", - "page": 0, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_east", - "page": 8, - "x": 518, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_eastm", - "page": 8, - "x": 776, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_north", - "page": 8, - "x": 1034, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_northm", - "page": 8, - "x": 1292, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_south", - "page": 8, - "x": 1550, - "y": 1288, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_southm", - "page": 8, - "x": 2, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_back", - "page": 35, - "x": 1553, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_backm", - "page": 35, - "x": 1683, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_front", - "page": 35, - "x": 1813, - "y": 260, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_frontm", - "page": 35, - "x": 2, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_side", - "page": 35, - "x": 132, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_sidem", - "page": 35, - "x": 262, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_east", - "page": 35, - "x": 392, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_eastm", - "page": 35, - "x": 522, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_north", - "page": 35, - "x": 652, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_northm", - "page": 35, - "x": 782, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_south", - "page": 35, - "x": 912, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_southm", - "page": 35, - "x": 1042, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_back", - "page": 38, - "x": 522, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_backm", - "page": 38, - "x": 588, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_front", - "page": 38, - "x": 654, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_frontm", - "page": 38, - "x": 720, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_side", - "page": 38, - "x": 786, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_sidem", - "page": 38, - "x": 852, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/capybara/Capybara_east", - "page": 8, - "x": 260, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/capybara/Capybara_north", - "page": 8, - "x": 518, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/capybara/Capybara_south", - "page": 8, - "x": 776, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/capybara/capybara_back", - "page": 35, - "x": 1172, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/capybara/capybara_front", - "page": 35, - "x": 1302, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/capybara/capybara_side", - "page": 35, - "x": 1432, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/caribou/Caribou_east", - "page": 0, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/caribou/Caribou_north", - "page": 0, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/caribou/Caribou_south", - "page": 0, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/caribou/caribou_back", - "page": 8, - "x": 1034, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/caribou/caribou_front", - "page": 8, - "x": 1292, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/caribou/caribou_side", - "page": 8, - "x": 1550, - "y": 1546, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_back", - "page": 35, - "x": 1562, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_front", - "page": 35, - "x": 1692, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_side", - "page": 35, - "x": 1822, - "y": 518, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cat/Cat_east", - "page": 35, - "x": 2, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cat/Cat_north", - "page": 35, - "x": 132, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cat/Cat_south", - "page": 35, - "x": 262, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cat/cat_back", - "page": 38, - "x": 918, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/cat/cat_front", - "page": 38, - "x": 984, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/cat/cat_side", - "page": 38, - "x": 1050, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chicken/Chicken_east", - "page": 35, - "x": 392, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chicken/Chicken_north", - "page": 35, - "x": 522, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chicken/Chicken_south", - "page": 35, - "x": 652, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chicken/chicken_back", - "page": 38, - "x": 1116, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chicken/chicken_front", - "page": 38, - "x": 1182, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chicken/chicken_side", - "page": 38, - "x": 1248, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_east", - "page": 35, - "x": 782, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_eastm", - "page": 35, - "x": 912, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_north", - "page": 35, - "x": 1042, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_northm", - "page": 35, - "x": 1172, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_south", - "page": 35, - "x": 1302, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_southm", - "page": 35, - "x": 1432, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_back", - "page": 38, - "x": 1314, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_front", - "page": 38, - "x": 1380, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_side", - "page": 38, - "x": 1446, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/cobra/cobra_back", - "page": 35, - "x": 1562, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cobra/cobra_front", - "page": 35, - "x": 1692, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cobra/cobra_side", - "page": 35, - "x": 1822, - "y": 648, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cougar/Cougar_east", - "page": 9, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cougar/Cougar_north", - "page": 9, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cougar/Cougar_south", - "page": 9, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cougar/cougar_back", - "page": 35, - "x": 2, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cougar/cougar_front", - "page": 35, - "x": 132, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cougar/cougar_side", - "page": 35, - "x": 262, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/Bull_east", - "page": 9, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/Bull_north", - "page": 9, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/Bull_south", - "page": 9, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/Cow_east", - "page": 9, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/Cow_north", - "page": 9, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/Cow_south", - "page": 9, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/cow/bull_back", - "page": 35, - "x": 392, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/bull_front", - "page": 35, - "x": 522, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/bull_side", - "page": 35, - "x": 652, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/cow_back", - "page": 35, - "x": 782, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/cow_front", - "page": 35, - "x": 912, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/cow/cow_side", - "page": 35, - "x": 1042, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_east", - "page": 0, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_eastm", - "page": 0, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_north", - "page": 1, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_northm", - "page": 1, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_south", - "page": 1, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_southm", - "page": 1, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_east", - "page": 1, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_eastm", - "page": 1, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_north", - "page": 1, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_northm", - "page": 1, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_south", - "page": 1, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_southm", - "page": 2, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_east", - "page": 2, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_eastm", - "page": 2, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_north", - "page": 2, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_northm", - "page": 2, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_south", - "page": 2, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/DeerMale_southm", - "page": 2, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerBaby_east", - "page": 2, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerFemale_east", - "page": 2, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerMale_east", - "page": 3, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/deer/deerbaby_back", - "page": 35, - "x": 1172, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerbaby_backm", - "page": 35, - "x": 1302, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerbaby_front", - "page": 35, - "x": 1432, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerbaby_frontm", - "page": 35, - "x": 1562, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerbaby_side", - "page": 35, - "x": 1692, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerbaby_sidem", - "page": 35, - "x": 1822, - "y": 778, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_back", - "page": 35, - "x": 2, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_backm", - "page": 35, - "x": 132, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_front", - "page": 35, - "x": 262, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_frontm", - "page": 35, - "x": 392, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_side", - "page": 35, - "x": 522, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deerfemale_sidem", - "page": 35, - "x": 652, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/deer/deermale_back", - "page": 9, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/deer/deermale_backm", - "page": 9, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/deer/deermale_front", - "page": 9, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/deer/deermale_frontm", - "page": 9, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/deer/deermale_side", - "page": 9, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/deer/deermale_sidem", - "page": 9, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedmedium_back", - "page": 9, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedsmall_back", - "page": 38, - "x": 1512, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedsnake_back", - "page": 35, - "x": 782, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/donkey/Dessicated_Donkey_east", - "page": 9, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_east", - "page": 9, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_north", - "page": 9, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_south", - "page": 9, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/Donkey_east", - "page": 9, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/Donkey_north", - "page": 9, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/donkey/Donkey_south", - "page": 9, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_east", - "page": 9, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_north", - "page": 9, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_south", - "page": 9, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_back", - "page": 35, - "x": 912, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_front", - "page": 35, - "x": 1042, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_side", - "page": 35, - "x": 1172, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dromedary/dromedarypack_back", - "page": 35, - "x": 1302, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dromedary/dromedarypack_side", - "page": 35, - "x": 1432, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east", - "page": 9, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_east", - "page": 9, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_north", - "page": 9, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_south", - "page": 9, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east", - "page": 35, - "x": 1562, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east", - "page": 9, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north", - "page": 9, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south", - "page": 9, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_east", - "page": 35, - "x": 1692, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_north", - "page": 35, - "x": 1822, - "y": 908, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_south", - "page": 35, - "x": 2, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/duck/DuckMale_east", - "page": 35, - "x": 132, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/duck/DuckMale_north", - "page": 35, - "x": 262, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/duck/DuckMale_south", - "page": 35, - "x": 392, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/elephant/Elephant_east", - "page": 9, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elephant/Elephant_north", - "page": 9, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elephant/Elephant_south", - "page": 9, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elephant/elephant_back", - "page": 35, - "x": 522, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/elephant/elephant_front", - "page": 9, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elephant/elephant_side", - "page": 35, - "x": 652, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_east", - "page": 9, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_north", - "page": 9, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_south", - "page": 9, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/ElkMale_east", - "page": 9, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/ElkMale_north", - "page": 9, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/ElkMale_south", - "page": 9, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkfemale_back", - "page": 9, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkfemale_front", - "page": 9, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkfemale_side", - "page": 9, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkmale_back", - "page": 9, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkmale_front", - "page": 9, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/elk/elkmale_side", - "page": 9, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/emu/emu_back", - "page": 35, - "x": 782, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/emu/emu_front", - "page": 35, - "x": 912, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/emu/emu_side", - "page": 35, - "x": 1042, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_east", - "page": 35, - "x": 1172, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_north", - "page": 35, - "x": 1302, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_south", - "page": 35, - "x": 1432, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_east", - "page": 35, - "x": 1562, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_north", - "page": 35, - "x": 1692, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_south", - "page": 35, - "x": 1822, - "y": 1038, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_east", - "page": 35, - "x": 2, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_north", - "page": 35, - "x": 132, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_south", - "page": 35, - "x": 262, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_back", - "page": 35, - "x": 392, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_front", - "page": 35, - "x": 522, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_side", - "page": 35, - "x": 652, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_back", - "page": 35, - "x": 782, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_front", - "page": 35, - "x": 912, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_side", - "page": 35, - "x": 1042, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxred/foxred_back", - "page": 35, - "x": 1172, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxred/foxred_front", - "page": 35, - "x": 1302, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/foxred/foxred_side", - "page": 35, - "x": 1432, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_back", - "page": 35, - "x": 1562, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_front", - "page": 35, - "x": 1692, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_side", - "page": 35, - "x": 1822, - "y": 1168, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/goat/Dessicated_GoatFemale_east", - "page": 10, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/Dessicated_GoatMale_east", - "page": 10, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_east", - "page": 10, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_north", - "page": 10, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_south", - "page": 10, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatMale_east", - "page": 10, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatMale_north", - "page": 10, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goat/GoatMale_south", - "page": 10, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goose/Dessicated_Goose_east", - "page": 10, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goose/Goose_east", - "page": 10, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goose/Goose_north", - "page": 10, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/goose/Goose_south", - "page": 10, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/guineapig/Dessicated_GuineaPig_east", - "page": 35, - "x": 2, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_east", - "page": 35, - "x": 132, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_north", - "page": 35, - "x": 262, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_south", - "page": 35, - "x": 392, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_east", - "page": 35, - "x": 522, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_north", - "page": 35, - "x": 652, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_south", - "page": 35, - "x": 782, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_east", - "page": 35, - "x": 912, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_north", - "page": 35, - "x": 1042, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_south", - "page": 35, - "x": 1172, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_east", - "page": 35, - "x": 1302, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_eastm", - "page": 35, - "x": 1432, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_north", - "page": 35, - "x": 1562, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_northm", - "page": 35, - "x": 1692, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_south", - "page": 35, - "x": 1822, - "y": 1298, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_southm", - "page": 35, - "x": 2, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/hare/Hare_east", - "page": 35, - "x": 132, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/hare/Hare_north", - "page": 35, - "x": 262, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/hare/Hare_south", - "page": 35, - "x": 392, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/hare/hare_back", - "page": 38, - "x": 1578, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/hare/hare_front", - "page": 38, - "x": 1644, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/hare/hare_side", - "page": 38, - "x": 1710, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/animal/horse/Dessicated_Horse_east", - "page": 10, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse1_east", - "page": 10, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse1_north", - "page": 10, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse1_south", - "page": 10, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse2_east", - "page": 10, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse2_north", - "page": 10, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse2_south", - "page": 10, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse3_east", - "page": 10, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse3_north", - "page": 10, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse3_south", - "page": 10, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse4_east", - "page": 10, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse4_north", - "page": 10, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse4_south", - "page": 10, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse5_east", - "page": 10, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse5_north", - "page": 10, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse5_south", - "page": 10, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse6_east", - "page": 10, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse6_north", - "page": 10, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse6_south", - "page": 10, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/HorsePack_east", - "page": 10, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/HorsePack_north", - "page": 10, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/HorsePack_south", - "page": 10, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse_east", - "page": 10, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse_north", - "page": 10, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/horse/Horse_south", - "page": 10, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_east", - "page": 10, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_eastm", - "page": 35, - "x": 2, - "y": 260, - "w": 255, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_north", - "page": 10, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_northm", - "page": 35, - "x": 259, - "y": 260, - "w": 255, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_south", - "page": 10, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/Husky_southm", - "page": 35, - "x": 516, - "y": 260, - "w": 255, - "h": 256 - }, - { - "key": "things/pawn/animal/husky/husky_back", - "page": 35, - "x": 522, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/husky/husky_backm", - "page": 35, - "x": 652, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/husky/husky_front", - "page": 35, - "x": 782, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/husky/husky_frontm", - "page": 35, - "x": 912, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/husky/husky_side", - "page": 35, - "x": 1042, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/husky/husky_sidem", - "page": 35, - "x": 1172, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_east", - "page": 10, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_eastm", - "page": 10, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_north", - "page": 10, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_northm", - "page": 10, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_south", - "page": 10, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_southm", - "page": 10, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_east", - "page": 10, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_eastm", - "page": 10, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_north", - "page": 10, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_northm", - "page": 11, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_south", - "page": 11, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_southm", - "page": 11, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_back", - "page": 35, - "x": 1302, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_backm", - "page": 35, - "x": 1432, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_front", - "page": 35, - "x": 1562, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_frontm", - "page": 35, - "x": 1692, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_side", - "page": 35, - "x": 1822, - "y": 1428, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_sidem", - "page": 35, - "x": 2, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_back", - "page": 35, - "x": 132, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_backm", - "page": 35, - "x": 262, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_front", - "page": 35, - "x": 392, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_frontm", - "page": 35, - "x": 522, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_side", - "page": 35, - "x": 652, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_sidem", - "page": 35, - "x": 782, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/iguana/Iguana_east", - "page": 11, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/iguana/Iguana_north", - "page": 11, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/iguana/Iguana_south", - "page": 11, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/iguana/iguana_back", - "page": 35, - "x": 912, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/iguana/iguana_front", - "page": 35, - "x": 1042, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/iguana/iguana_side", - "page": 35, - "x": 1172, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/Labrador_east", - "page": 35, - "x": 1302, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/Labrador_north", - "page": 35, - "x": 1432, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/Labrador_south", - "page": 35, - "x": 1562, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/labrador_back", - "page": 35, - "x": 1692, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/labrador_front", - "page": 35, - "x": 1822, - "y": 1558, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/labrador/labrador_side", - "page": 35, - "x": 2, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/Lynx_east", - "page": 11, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/Lynx_eastm", - "page": 11, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/Lynx_north", - "page": 11, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/Lynx_northm", - "page": 11, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/Lynx_south", - "page": 11, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/Lynx_southm", - "page": 11, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/lynx/lynx_back", - "page": 35, - "x": 132, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/lynx_backm", - "page": 35, - "x": 262, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/lynx_front", - "page": 35, - "x": 392, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/lynx_frontm", - "page": 35, - "x": 522, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/lynx_side", - "page": 35, - "x": 652, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/lynx/lynx_sidem", - "page": 35, - "x": 782, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_east", - "page": 11, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_north", - "page": 11, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_south", - "page": 11, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_back", - "page": 35, - "x": 912, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_front", - "page": 35, - "x": 1042, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_side", - "page": 35, - "x": 1172, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_east", - "page": 11, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_north", - "page": 11, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_south", - "page": 11, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_back", - "page": 35, - "x": 1302, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_front", - "page": 35, - "x": 1432, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_side", - "page": 35, - "x": 1562, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_east", - "page": 11, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_north", - "page": 11, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_south", - "page": 11, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_back", - "page": 35, - "x": 1692, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_front", - "page": 35, - "x": 1822, - "y": 1688, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_side", - "page": 35, - "x": 2, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/monkey/Monkey_east", - "page": 11, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/monkey/Monkey_north", - "page": 11, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/monkey/Monkey_south", - "page": 11, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/monkey/monkey_back", - "page": 11, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/monkey/monkey_front", - "page": 11, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/monkey/monkey_side", - "page": 11, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_east", - "page": 3, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_north", - "page": 3, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_south", - "page": 3, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_back", - "page": 11, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_front", - "page": 11, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_side", - "page": 11, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_back", - "page": 35, - "x": 132, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_front", - "page": 35, - "x": 262, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_side", - "page": 11, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/muffalopack_back", - "page": 11, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/muffalo/muffalopack_side", - "page": 11, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_back", - "page": 35, - "x": 392, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_backm", - "page": 35, - "x": 522, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_front", - "page": 35, - "x": 652, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_frontm", - "page": 35, - "x": 782, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_side", - "page": 35, - "x": 912, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_sidem", - "page": 35, - "x": 1042, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/pig/pig_back", - "page": 35, - "x": 1172, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/pig/pig_front", - "page": 35, - "x": 1302, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/pig/pig_side", - "page": 35, - "x": 1432, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_east", - "page": 11, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_eastm", - "page": 11, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_north", - "page": 11, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_northm", - "page": 11, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_south", - "page": 11, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_southm", - "page": 11, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_back", - "page": 35, - "x": 1562, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_backm", - "page": 35, - "x": 1692, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_front", - "page": 35, - "x": 1822, - "y": 1818, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_frontm", - "page": 36, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_side", - "page": 36, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_sidem", - "page": 36, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/Rat_east", - "page": 11, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/Rat_eastm", - "page": 11, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/Rat_north", - "page": 11, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/Rat_northm", - "page": 11, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/Rat_south", - "page": 11, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/Rat_southm", - "page": 11, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rat/rat_back", - "page": 36, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/rat_backm", - "page": 36, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/rat_front", - "page": 36, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/rat_frontm", - "page": 36, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/rat_side", - "page": 36, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rat/rat_sidem", - "page": 36, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rhino/Rhino_east", - "page": 11, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rhino/Rhino_north", - "page": 11, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rhino/Rhino_south", - "page": 11, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/rhino/rhino_back", - "page": 36, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rhino/rhino_front", - "page": 36, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/rhino/rhino_side", - "page": 36, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/sheep/Dessicated_SheepFemale_east", - "page": 11, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/Dessicated_SheepMale_east", - "page": 12, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_east", - "page": 12, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_north", - "page": 12, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_south", - "page": 12, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_east", - "page": 12, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_north", - "page": 12, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_south", - "page": 12, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_east", - "page": 12, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_north", - "page": 12, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_south", - "page": 12, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_back", - "page": 36, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_front", - "page": 36, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_side", - "page": 36, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_east", - "page": 36, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_north", - "page": 36, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_south", - "page": 36, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_back", - "page": 36, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_front", - "page": 36, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_side", - "page": 36, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_east", - "page": 3, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_north", - "page": 3, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_south", - "page": 3, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_back", - "page": 12, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_front", - "page": 12, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_side", - "page": 12, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_east", - "page": 12, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_eastm", - "page": 12, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_north", - "page": 12, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_northm", - "page": 12, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_south", - "page": 12, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_southm", - "page": 12, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_east", - "page": 12, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_eastm", - "page": 12, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_north", - "page": 12, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_northm", - "page": 12, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_south", - "page": 12, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_southm", - "page": 12, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_east", - "page": 3, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_eastm", - "page": 3, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_north", - "page": 4, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_northm", - "page": 4, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_south", - "page": 4, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_southm", - "page": 4, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_back", - "page": 36, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_front", - "page": 36, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_side", - "page": 36, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/toxalope/Dessicated_Toxalope_east", - "page": 12, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_east", - "page": 12, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_north", - "page": 12, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_south", - "page": 12, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_east", - "page": 12, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_north", - "page": 12, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_south", - "page": 12, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_east", - "page": 12, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_north", - "page": 12, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_south", - "page": 12, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_back", - "page": 36, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_front", - "page": 36, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_side", - "page": 36, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_back", - "page": 36, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_front", - "page": 36, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_side", - "page": 36, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/warg/Warg_east", - "page": 12, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/warg/Warg_north", - "page": 12, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/warg/Warg_south", - "page": 12, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/warg/warg_back", - "page": 36, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/warg/warg_front", - "page": 36, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/warg/warg_side", - "page": 36, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_east", - "page": 12, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_north", - "page": 12, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_south", - "page": 12, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_back", - "page": 36, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_front", - "page": 36, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_side", - "page": 36, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_east", - "page": 12, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_north", - "page": 12, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_south", - "page": 12, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_east", - "page": 12, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_north", - "page": 12, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_south", - "page": 12, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_east", - "page": 12, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_north", - "page": 12, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_south", - "page": 13, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_east", - "page": 13, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_north", - "page": 13, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_south", - "page": 13, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_east", - "page": 13, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_north", - "page": 13, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_south", - "page": 13, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_back", - "page": 36, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_front", - "page": 36, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_side", - "page": 36, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_back", - "page": 36, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_front", - "page": 36, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_side", - "page": 36, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/yak/Dessicated_YakFemale_east", - "page": 13, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/Dessicated_YakMale_east", - "page": 13, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakFemalePack_east", - "page": 13, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakFemalePack_north", - "page": 13, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakFemale_east", - "page": 13, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakFemale_north", - "page": 13, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakFemale_south", - "page": 13, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakMalePack_east", - "page": 13, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakMalePack_north", - "page": 13, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakMale_east", - "page": 13, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakMale_north", - "page": 13, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yak/YakMale_south", - "page": 13, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_back", - "page": 36, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_front", - "page": 36, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_side", - "page": 36, - "x": 1822, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/effects/mentalstateimminent", - "page": 36, - "x": 2, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/effects/unhappy", - "page": 36, - "x": 132, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/Mechlink", - "page": 36, - "x": 262, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet", - "page": 38, - "x": 1776, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back", - "page": 36, - "x": 392, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front", - "page": 36, - "x": 522, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side", - "page": 36, - "x": 652, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset", - "page": 36, - "x": 782, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east", - "page": 13, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north", - "page": 13, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south", - "page": 13, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset", - "page": 36, - "x": 912, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east", - "page": 13, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north", - "page": 13, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south", - "page": 13, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap", - "page": 36, - "x": 1042, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east", - "page": 13, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north", - "page": 13, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south", - "page": 13, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack", - "page": 36, - "x": 1172, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east", - "page": 13, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north", - "page": 13, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south", - "page": 13, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret", - "page": 36, - "x": 1302, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_east", - "page": 13, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_north", - "page": 13, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_south", - "page": 13, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_west", - "page": 13, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold", - "page": 36, - "x": 1432, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_east", - "page": 13, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_north", - "page": 13, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_south", - "page": 13, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap", - "page": 36, - "x": 1562, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east", - "page": 13, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north", - "page": 13, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south", - "page": 13, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east", - "page": 13, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north", - "page": 13, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south", - "page": 13, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east", - "page": 13, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north", - "page": 13, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south", - "page": 13, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east", - "page": 13, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north", - "page": 13, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south", - "page": 14, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east", - "page": 14, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north", - "page": 14, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south", - "page": 14, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_south", - "page": 36, - "x": 1692, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat", - "page": 38, - "x": 1842, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back", - "page": 36, - "x": 1822, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front", - "page": 36, - "x": 2, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side", - "page": 36, - "x": 132, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack", - "page": 14, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east", - "page": 14, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north", - "page": 14, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south", - "page": 14, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap", - "page": 36, - "x": 262, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_east", - "page": 14, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_north", - "page": 14, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_south", - "page": 14, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka", - "page": 36, - "x": 392, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_east", - "page": 14, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_north", - "page": 14, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_south", - "page": 14, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_east", - "page": 14, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_north", - "page": 14, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_south", - "page": 14, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_east", - "page": 14, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_north", - "page": 14, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_south", - "page": 14, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_east", - "page": 14, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_north", - "page": 14, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_south", - "page": 14, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_east", - "page": 14, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_north", - "page": 14, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_south", - "page": 14, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape", - "page": 36, - "x": 522, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_east", - "page": 14, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_north", - "page": 14, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_south", - "page": 14, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_east", - "page": 14, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_north", - "page": 14, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_south", - "page": 14, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_east", - "page": 14, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_north", - "page": 14, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_south", - "page": 14, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_east", - "page": 14, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_north", - "page": 14, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_south", - "page": 14, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_east", - "page": 14, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_north", - "page": 14, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_south", - "page": 14, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor", - "page": 36, - "x": 652, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east", - "page": 14, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north", - "page": 14, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south", - "page": 14, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east", - "page": 14, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north", - "page": 14, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south", - "page": 14, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east", - "page": 14, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north", - "page": 14, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south", - "page": 15, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east", - "page": 15, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north", - "page": 15, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south", - "page": 15, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east", - "page": 15, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north", - "page": 15, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south", - "page": 15, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet", - "page": 36, - "x": 782, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east", - "page": 15, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north", - "page": 15, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south", - "page": 15, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask", - "page": 36, - "x": 912, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_east", - "page": 15, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_north", - "page": 15, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_south", - "page": 15, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack", - "page": 36, - "x": 1042, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_east", - "page": 15, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_north", - "page": 15, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_south", - "page": 15, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet", - "page": 36, - "x": 1172, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_east", - "page": 15, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_north", - "page": 15, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_south", - "page": 15, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal", - "page": 15, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east", - "page": 15, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north", - "page": 15, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south", - "page": 15, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east", - "page": 15, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north", - "page": 15, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south", - "page": 15, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east", - "page": 15, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north", - "page": 15, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south", - "page": 15, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east", - "page": 15, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north", - "page": 15, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south", - "page": 15, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east", - "page": 15, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north", - "page": 15, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south", - "page": 15, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat", - "page": 38, - "x": 1908, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back", - "page": 36, - "x": 1302, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front", - "page": 36, - "x": 1432, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side", - "page": 36, - "x": 1562, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown", - "page": 36, - "x": 1692, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_east", - "page": 15, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_north", - "page": 15, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_south", - "page": 15, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic", - "page": 36, - "x": 1822, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_east", - "page": 15, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_north", - "page": 15, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_south", - "page": 15, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster", - "page": 38, - "x": 1974, - "y": 522, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_back", - "page": 36, - "x": 2, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_front", - "page": 36, - "x": 132, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_side", - "page": 36, - "x": 262, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_back", - "page": 36, - "x": 392, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_front", - "page": 36, - "x": 522, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_side", - "page": 36, - "x": 652, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_back", - "page": 36, - "x": 782, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_front", - "page": 36, - "x": 912, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_side", - "page": 36, - "x": 1042, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_back", - "page": 36, - "x": 1172, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_front", - "page": 36, - "x": 1302, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_side", - "page": 36, - "x": 1432, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_back", - "page": 36, - "x": 1562, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_front", - "page": 36, - "x": 1692, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_side", - "page": 36, - "x": 1822, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet", - "page": 36, - "x": 2, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east", - "page": 15, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north", - "page": 15, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south", - "page": 15, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe", - "page": 15, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east", - "page": 15, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north", - "page": 15, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south", - "page": 15, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east", - "page": 15, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north", - "page": 16, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south", - "page": 16, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east", - "page": 16, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north", - "page": 16, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south", - "page": 16, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east", - "page": 16, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north", - "page": 16, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south", - "page": 16, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east", - "page": 16, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north", - "page": 16, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south", - "page": 16, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt", - "page": 16, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east", - "page": 16, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north", - "page": 16, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east", - "page": 16, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north", - "page": 16, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south", - "page": 16, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east", - "page": 16, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north", - "page": 16, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south", - "page": 16, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east", - "page": 16, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north", - "page": 16, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south", - "page": 16, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east", - "page": 16, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north", - "page": 16, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south", - "page": 16, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south", - "page": 16, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat", - "page": 36, - "x": 132, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_east", - "page": 16, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_north", - "page": 16, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_south", - "page": 16, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask", - "page": 36, - "x": 262, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_east", - "page": 16, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_north", - "page": 16, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_south", - "page": 16, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor", - "page": 36, - "x": 392, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east", - "page": 16, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north", - "page": 16, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south", - "page": 16, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east", - "page": 16, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north", - "page": 16, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south", - "page": 16, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east", - "page": 16, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north", - "page": 16, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south", - "page": 16, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east", - "page": 16, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north", - "page": 16, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south", - "page": 16, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east", - "page": 16, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north", - "page": 16, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south", - "page": 16, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink", - "page": 36, - "x": 522, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_east", - "page": 16, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_north", - "page": 17, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_south", - "page": 17, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap", - "page": 36, - "x": 652, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_east", - "page": 17, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_north", - "page": 17, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_south", - "page": 17, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier", - "page": 36, - "x": 782, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east", - "page": 17, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north", - "page": 17, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south", - "page": 17, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east", - "page": 17, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north", - "page": 17, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south", - "page": 17, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east", - "page": 17, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north", - "page": 17, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south", - "page": 17, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east", - "page": 17, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north", - "page": 17, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south", - "page": 17, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east", - "page": 17, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north", - "page": 17, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south", - "page": 17, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood", - "page": 36, - "x": 912, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_east", - "page": 17, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_north", - "page": 17, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_south", - "page": 17, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset", - "page": 36, - "x": 1042, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east", - "page": 17, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north", - "page": 17, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south", - "page": 17, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket", - "page": 38, - "x": 2, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_back", - "page": 36, - "x": 1172, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_front", - "page": 36, - "x": 1302, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_side", - "page": 36, - "x": 1432, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_back", - "page": 36, - "x": 1562, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_front", - "page": 36, - "x": 1692, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_side", - "page": 36, - "x": 1822, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_back", - "page": 36, - "x": 2, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_front", - "page": 36, - "x": 132, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_side", - "page": 36, - "x": 262, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_back", - "page": 36, - "x": 392, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_front", - "page": 36, - "x": 522, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_side", - "page": 36, - "x": 652, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_back", - "page": 36, - "x": 782, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_front", - "page": 36, - "x": 912, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_side", - "page": 36, - "x": 1042, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack", - "page": 17, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_east", - "page": 17, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_north", - "page": 17, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_south", - "page": 17, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet", - "page": 36, - "x": 1172, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east", - "page": 17, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north", - "page": 17, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south", - "page": 17, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidpants/KidPants", - "page": 36, - "x": 1302, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka", - "page": 36, - "x": 1432, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_east", - "page": 17, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_north", - "page": 17, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_south", - "page": 17, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper", - "page": 36, - "x": 1562, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east", - "page": 17, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north", - "page": 17, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south", - "page": 17, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt", - "page": 36, - "x": 1692, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east", - "page": 17, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north", - "page": 17, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south", - "page": 17, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear", - "page": 36, - "x": 1822, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east", - "page": 17, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north", - "page": 17, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south", - "page": 17, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat", - "page": 17, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east", - "page": 17, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north", - "page": 17, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south", - "page": 17, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east", - "page": 18, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north", - "page": 18, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south", - "page": 18, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east", - "page": 18, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north", - "page": 18, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south", - "page": 18, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east", - "page": 18, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north", - "page": 18, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south", - "page": 18, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east", - "page": 18, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north", - "page": 18, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south", - "page": 18, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat", - "page": 36, - "x": 2, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_east", - "page": 18, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_north", - "page": 18, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_south", - "page": 18, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor", - "page": 36, - "x": 132, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east", - "page": 18, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north", - "page": 18, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south", - "page": 18, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east", - "page": 18, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north", - "page": 18, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south", - "page": 18, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east", - "page": 18, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north", - "page": 18, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south", - "page": 18, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east", - "page": 18, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north", - "page": 18, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south", - "page": 18, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east", - "page": 18, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north", - "page": 18, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south", - "page": 18, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet", - "page": 36, - "x": 262, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east", - "page": 18, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north", - "page": 18, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south", - "page": 18, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet", - "page": 36, - "x": 392, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east", - "page": 18, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north", - "page": 18, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south", - "page": 18, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit", - "page": 36, - "x": 522, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east", - "page": 18, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north", - "page": 18, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south", - "page": 18, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east", - "page": 18, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north", - "page": 18, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south", - "page": 18, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east", - "page": 18, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north", - "page": 18, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south", - "page": 18, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east", - "page": 18, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north", - "page": 18, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south", - "page": 18, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east", - "page": 18, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north", - "page": 19, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south", - "page": 19, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka", - "page": 38, - "x": 68, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_back", - "page": 36, - "x": 652, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_front", - "page": 36, - "x": 782, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_side", - "page": 36, - "x": 912, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_back", - "page": 36, - "x": 1042, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_front", - "page": 36, - "x": 1172, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_side", - "page": 36, - "x": 1302, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_back", - "page": 36, - "x": 1432, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_front", - "page": 36, - "x": 1562, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_side", - "page": 36, - "x": 1692, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_back", - "page": 36, - "x": 1822, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_front", - "page": 36, - "x": 2, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_side", - "page": 36, - "x": 132, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_back", - "page": 36, - "x": 262, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_front", - "page": 36, - "x": 392, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_side", - "page": 36, - "x": 522, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor", - "page": 36, - "x": 652, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east", - "page": 19, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north", - "page": 19, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south", - "page": 19, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east", - "page": 19, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north", - "page": 19, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south", - "page": 19, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east", - "page": 19, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north", - "page": 19, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south", - "page": 19, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east", - "page": 19, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north", - "page": 19, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south", - "page": 19, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east", - "page": 19, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north", - "page": 19, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south", - "page": 19, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor", - "page": 36, - "x": 782, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east", - "page": 19, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north", - "page": 19, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south", - "page": 19, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east", - "page": 19, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north", - "page": 19, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south", - "page": 19, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east", - "page": 19, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north", - "page": 19, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south", - "page": 19, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east", - "page": 19, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north", - "page": 19, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south", - "page": 19, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east", - "page": 19, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north", - "page": 19, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south", - "page": 19, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back", - "page": 36, - "x": 912, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front", - "page": 36, - "x": 1042, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side", - "page": 36, - "x": 1172, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back", - "page": 36, - "x": 1302, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front", - "page": 36, - "x": 1432, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side", - "page": 36, - "x": 1562, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back", - "page": 36, - "x": 1692, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front", - "page": 36, - "x": 1822, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side", - "page": 36, - "x": 2, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back", - "page": 36, - "x": 132, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front", - "page": 36, - "x": 262, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side", - "page": 36, - "x": 392, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back", - "page": 36, - "x": 522, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front", - "page": 36, - "x": 652, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side", - "page": 36, - "x": 782, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet", - "page": 38, - "x": 134, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back", - "page": 36, - "x": 912, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front", - "page": 36, - "x": 1042, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side", - "page": 36, - "x": 1172, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor", - "page": 36, - "x": 1302, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east", - "page": 19, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm", - "page": 19, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north", - "page": 19, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm", - "page": 19, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south", - "page": 19, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm", - "page": 19, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east", - "page": 19, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm", - "page": 19, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north", - "page": 19, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm", - "page": 19, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south", - "page": 19, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm", - "page": 19, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east", - "page": 19, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm", - "page": 19, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north", - "page": 19, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm", - "page": 19, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south", - "page": 19, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm", - "page": 20, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east", - "page": 20, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm", - "page": 20, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north", - "page": 20, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm", - "page": 20, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south", - "page": 20, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm", - "page": 20, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east", - "page": 20, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm", - "page": 20, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north", - "page": 20, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm", - "page": 20, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south", - "page": 20, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm", - "page": 20, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m", - "page": 36, - "x": 1432, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet", - "page": 36, - "x": 1562, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east", - "page": 20, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm", - "page": 20, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m", - "page": 36, - "x": 1692, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north", - "page": 20, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm", - "page": 20, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south", - "page": 20, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm", - "page": 20, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor", - "page": 36, - "x": 1822, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east", - "page": 20, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm", - "page": 20, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north", - "page": 20, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm", - "page": 20, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south", - "page": 20, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm", - "page": 20, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east", - "page": 20, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm", - "page": 20, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north", - "page": 20, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm", - "page": 20, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south", - "page": 20, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm", - "page": 20, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east", - "page": 20, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm", - "page": 20, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north", - "page": 20, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm", - "page": 20, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south", - "page": 20, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm", - "page": 20, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east", - "page": 20, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm", - "page": 20, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north", - "page": 20, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm", - "page": 20, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south", - "page": 20, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm", - "page": 20, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east", - "page": 20, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm", - "page": 20, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north", - "page": 20, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm", - "page": 20, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south", - "page": 20, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm", - "page": 20, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m", - "page": 36, - "x": 2, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet", - "page": 36, - "x": 132, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east", - "page": 36, - "x": 262, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm", - "page": 36, - "x": 392, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m", - "page": 36, - "x": 522, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north", - "page": 36, - "x": 652, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm", - "page": 36, - "x": 782, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south", - "page": 36, - "x": 912, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm", - "page": 36, - "x": 1042, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor", - "page": 36, - "x": 1172, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east", - "page": 21, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm", - "page": 21, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north", - "page": 21, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm", - "page": 21, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south", - "page": 21, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm", - "page": 21, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east", - "page": 21, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm", - "page": 21, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north", - "page": 21, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm", - "page": 21, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south", - "page": 21, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm", - "page": 21, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east", - "page": 21, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm", - "page": 21, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north", - "page": 21, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm", - "page": 21, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south", - "page": 21, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm", - "page": 21, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east", - "page": 21, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm", - "page": 21, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north", - "page": 21, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm", - "page": 21, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south", - "page": 21, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm", - "page": 21, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east", - "page": 21, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm", - "page": 21, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north", - "page": 21, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm", - "page": 21, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south", - "page": 21, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm", - "page": 21, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m", - "page": 36, - "x": 1302, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet", - "page": 36, - "x": 1432, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east", - "page": 21, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm", - "page": 21, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m", - "page": 36, - "x": 1562, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north", - "page": 21, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm", - "page": 21, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south", - "page": 21, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm", - "page": 21, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet", - "page": 38, - "x": 200, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back", - "page": 36, - "x": 1692, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front", - "page": 36, - "x": 1822, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side", - "page": 36, - "x": 2, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east", - "page": 21, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north", - "page": 21, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south", - "page": 21, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east", - "page": 21, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north", - "page": 21, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south", - "page": 21, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east", - "page": 21, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north", - "page": 21, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south", - "page": 21, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east", - "page": 21, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north", - "page": 21, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south", - "page": 21, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east", - "page": 21, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north", - "page": 22, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south", - "page": 22, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet", - "page": 36, - "x": 132, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east", - "page": 22, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north", - "page": 22, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south", - "page": 22, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe", - "page": 36, - "x": 262, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_east", - "page": 22, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_north", - "page": 22, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_south", - "page": 22, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_east", - "page": 22, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_north", - "page": 22, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_south", - "page": 22, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_east", - "page": 22, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_north", - "page": 22, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_south", - "page": 22, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_east", - "page": 22, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_north", - "page": 22, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_south", - "page": 22, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_east", - "page": 22, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_north", - "page": 22, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_south", - "page": 22, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe", - "page": 22, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east", - "page": 22, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north", - "page": 22, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south", - "page": 22, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east", - "page": 22, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north", - "page": 22, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south", - "page": 22, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east", - "page": 22, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north", - "page": 22, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south", - "page": 22, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east", - "page": 22, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north", - "page": 22, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south", - "page": 22, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east", - "page": 22, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north", - "page": 22, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south", - "page": 22, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet", - "page": 36, - "x": 392, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east", - "page": 36, - "x": 522, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm", - "page": 36, - "x": 652, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m", - "page": 36, - "x": 782, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north", - "page": 36, - "x": 912, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm", - "page": 36, - "x": 1042, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south", - "page": 36, - "x": 1172, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm", - "page": 36, - "x": 1302, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash", - "page": 36, - "x": 1432, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_east", - "page": 22, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_north", - "page": 22, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_south", - "page": 22, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_east", - "page": 22, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_north", - "page": 22, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_south", - "page": 22, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_east", - "page": 22, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_north", - "page": 22, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_south", - "page": 22, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_east", - "page": 22, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_north", - "page": 22, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_south", - "page": 22, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_east", - "page": 22, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_north", - "page": 23, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_south", - "page": 23, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone", - "page": 36, - "x": 1562, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_east", - "page": 23, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_north", - "page": 23, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_south", - "page": 23, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shieldbelt/shieldbelt", - "page": 38, - "x": 266, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic", - "page": 23, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east", - "page": 23, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north", - "page": 23, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south", - "page": 23, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east", - "page": 23, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north", - "page": 23, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south", - "page": 23, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east", - "page": 23, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north", - "page": 23, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south", - "page": 23, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east", - "page": 23, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north", - "page": 23, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south", - "page": 23, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east", - "page": 23, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north", - "page": 23, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south", - "page": 23, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back", - "page": 36, - "x": 1692, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front", - "page": 36, - "x": 1822, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side", - "page": 36, - "x": 2, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back", - "page": 36, - "x": 132, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front", - "page": 36, - "x": 262, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side", - "page": 36, - "x": 392, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back", - "page": 36, - "x": 522, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front", - "page": 36, - "x": 652, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side", - "page": 36, - "x": 782, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back", - "page": 36, - "x": 912, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front", - "page": 36, - "x": 1042, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side", - "page": 36, - "x": 1172, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back", - "page": 36, - "x": 1302, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front", - "page": 36, - "x": 1432, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side", - "page": 36, - "x": 1562, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton", - "page": 23, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east", - "page": 23, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north", - "page": 23, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south", - "page": 23, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east", - "page": 23, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north", - "page": 23, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south", - "page": 23, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east", - "page": 23, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north", - "page": 23, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south", - "page": 23, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east", - "page": 23, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north", - "page": 23, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south", - "page": 23, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east", - "page": 23, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north", - "page": 23, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south", - "page": 23, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back", - "page": 36, - "x": 1692, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front", - "page": 36, - "x": 1822, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side", - "page": 36, - "x": 2, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back", - "page": 36, - "x": 132, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front", - "page": 36, - "x": 262, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side", - "page": 36, - "x": 392, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back", - "page": 36, - "x": 522, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front", - "page": 36, - "x": 652, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side", - "page": 36, - "x": 782, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back", - "page": 36, - "x": 912, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front", - "page": 36, - "x": 1042, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side", - "page": 36, - "x": 1172, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back", - "page": 36, - "x": 1302, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front", - "page": 36, - "x": 1432, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side", - "page": 36, - "x": 1562, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle", - "page": 23, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east", - "page": 23, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north", - "page": 23, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south", - "page": 23, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east", - "page": 23, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north", - "page": 23, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south", - "page": 23, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east", - "page": 23, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north", - "page": 23, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south", - "page": 23, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east", - "page": 23, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north", - "page": 23, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south", - "page": 24, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east", - "page": 24, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north", - "page": 24, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south", - "page": 24, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet", - "page": 38, - "x": 332, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back", - "page": 36, - "x": 1692, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front", - "page": 36, - "x": 1822, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side", - "page": 37, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar", - "page": 37, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east", - "page": 37, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north", - "page": 37, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south", - "page": 37, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCap", - "page": 37, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_east", - "page": 24, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_north", - "page": 24, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_south", - "page": 24, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_east", - "page": 24, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_north", - "page": 24, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_south", - "page": 24, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_east", - "page": 24, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_north", - "page": 24, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_south", - "page": 24, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt", - "page": 38, - "x": 398, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap", - "page": 37, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_east", - "page": 24, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_north", - "page": 24, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_south", - "page": 24, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat", - "page": 37, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_east", - "page": 24, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_north", - "page": 24, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_south", - "page": 24, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown", - "page": 37, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_east", - "page": 24, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_north", - "page": 24, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_south", - "page": 24, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack", - "page": 37, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_east", - "page": 24, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_north", - "page": 24, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_south", - "page": 24, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala", - "page": 38, - "x": 464, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_back", - "page": 37, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_front", - "page": 37, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_side", - "page": 37, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_back", - "page": 37, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_front", - "page": 37, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_side", - "page": 37, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_back", - "page": 37, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_front", - "page": 37, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_side", - "page": 37, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_back", - "page": 37, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_front", - "page": 37, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_side", - "page": 37, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_back", - "page": 37, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_front", - "page": 37, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_side", - "page": 37, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress", - "page": 37, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east", - "page": 24, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north", - "page": 24, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south", - "page": 24, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque", - "page": 38, - "x": 530, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_back", - "page": 37, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_front", - "page": 37, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_side", - "page": 37, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/various/pants_onmap", - "page": 38, - "x": 596, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil", - "page": 37, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_east", - "page": 24, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_north", - "page": 24, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_south", - "page": 24, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate", - "page": 38, - "x": 662, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_back", - "page": 37, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_front", - "page": 37, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_side", - "page": 37, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_back", - "page": 37, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_front", - "page": 37, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_side", - "page": 37, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back", - "page": 37, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front", - "page": 37, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side", - "page": 37, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_back", - "page": 37, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_front", - "page": 37, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_side", - "page": 37, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_back", - "page": 37, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_front", - "page": 37, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_side", - "page": 37, - "x": 1822, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal", - "page": 24, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east", - "page": 24, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north", - "page": 24, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south", - "page": 24, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east", - "page": 24, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north", - "page": 24, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south", - "page": 24, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east", - "page": 24, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north", - "page": 24, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south", - "page": 24, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east", - "page": 24, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north", - "page": 24, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south", - "page": 24, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east", - "page": 24, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north", - "page": 24, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south", - "page": 24, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMask", - "page": 37, - "x": 2, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_east", - "page": 24, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_north", - "page": 24, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_south", - "page": 25, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_east", - "page": 25, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_north", - "page": 25, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_south", - "page": 25, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_east", - "page": 25, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_north", - "page": 25, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_south", - "page": 25, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask", - "page": 37, - "x": 132, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_east", - "page": 25, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_north", - "page": 25, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_south", - "page": 25, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore", - "page": 37, - "x": 262, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east", - "page": 25, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north", - "page": 25, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south", - "page": 25, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east", - "page": 25, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north", - "page": 25, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south", - "page": 25, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east", - "page": 25, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north", - "page": 25, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south", - "page": 25, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east", - "page": 25, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north", - "page": 25, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south", - "page": 25, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east", - "page": 25, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north", - "page": 25, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south", - "page": 25, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore", - "page": 37, - "x": 392, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east", - "page": 25, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north", - "page": 25, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south", - "page": 25, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east", - "page": 25, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north", - "page": 25, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south", - "page": 25, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east", - "page": 25, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north", - "page": 25, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south", - "page": 25, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east", - "page": 25, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north", - "page": 25, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south", - "page": 25, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east", - "page": 25, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north", - "page": 25, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south", - "page": 25, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu", - "page": 37, - "x": 522, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east", - "page": 25, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north", - "page": 25, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south", - "page": 25, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic", - "page": 37, - "x": 652, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east", - "page": 25, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north", - "page": 25, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south", - "page": 25, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore", - "page": 37, - "x": 782, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east", - "page": 25, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north", - "page": 25, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south", - "page": 25, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist", - "page": 37, - "x": 912, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east", - "page": 26, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north", - "page": 26, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south", - "page": 26, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid", - "page": 37, - "x": 1042, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east", - "page": 26, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north", - "page": 26, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south", - "page": 26, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic", - "page": 37, - "x": 1172, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east", - "page": 26, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north", - "page": 26, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south", - "page": 26, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist", - "page": 37, - "x": 1302, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east", - "page": 26, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north", - "page": 26, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south", - "page": 26, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid", - "page": 37, - "x": 1432, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east", - "page": 26, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north", - "page": 26, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south", - "page": 26, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic", - "page": 37, - "x": 1562, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east", - "page": 26, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north", - "page": 26, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south", - "page": 26, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist", - "page": 37, - "x": 1692, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east", - "page": 26, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north", - "page": 26, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south", - "page": 26, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid", - "page": 37, - "x": 1822, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east", - "page": 26, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north", - "page": 26, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south", - "page": 26, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic", - "page": 37, - "x": 2, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east", - "page": 26, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north", - "page": 26, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south", - "page": 26, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu", - "page": 37, - "x": 132, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east", - "page": 26, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north", - "page": 26, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south", - "page": 26, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic", - "page": 37, - "x": 262, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east", - "page": 26, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north", - "page": 26, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south", - "page": 26, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore", - "page": 37, - "x": 392, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east", - "page": 26, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north", - "page": 26, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south", - "page": 26, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore", - "page": 37, - "x": 522, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east", - "page": 26, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north", - "page": 26, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south", - "page": 26, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east", - "page": 26, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north", - "page": 26, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south", - "page": 26, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east", - "page": 26, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north", - "page": 26, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south", - "page": 26, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east", - "page": 26, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north", - "page": 26, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south", - "page": 26, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east", - "page": 26, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north", - "page": 27, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south", - "page": 27, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore", - "page": 37, - "x": 652, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east", - "page": 27, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north", - "page": 27, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south", - "page": 27, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east", - "page": 27, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north", - "page": 27, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south", - "page": 27, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east", - "page": 27, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north", - "page": 27, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south", - "page": 27, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east", - "page": 27, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north", - "page": 27, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south", - "page": 27, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east", - "page": 27, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north", - "page": 27, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south", - "page": 27, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist", - "page": 37, - "x": 782, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east", - "page": 27, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north", - "page": 27, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south", - "page": 27, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_east", - "page": 27, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_north", - "page": 27, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_south", - "page": 27, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_east", - "page": 27, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_north", - "page": 27, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_south", - "page": 27, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_east", - "page": 27, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_north", - "page": 27, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_south", - "page": 27, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_east", - "page": 27, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_north", - "page": 27, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_south", - "page": 27, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_east", - "page": 27, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_north", - "page": 27, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_south", - "page": 27, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_east", - "page": 27, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_north", - "page": 27, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_south", - "page": 27, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_east", - "page": 27, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_north", - "page": 27, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_south", - "page": 27, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_east", - "page": 27, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_north", - "page": 27, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_south", - "page": 27, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_east", - "page": 27, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_north", - "page": 27, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_south", - "page": 27, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_east", - "page": 27, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_north", - "page": 27, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_south", - "page": 28, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_east", - "page": 28, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_north", - "page": 28, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_south", - "page": 28, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_east", - "page": 28, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_north", - "page": 28, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_south", - "page": 28, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_east", - "page": 28, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_north", - "page": 28, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_south", - "page": 28, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_east", - "page": 28, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_north", - "page": 28, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_south", - "page": 28, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east", - "page": 28, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south", - "page": 28, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinKnots_east", - "page": 28, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinKnots_south", - "page": 28, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMegabraid_east", - "page": 28, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMegabraid_south", - "page": 28, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMonkey_east", - "page": 28, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMonkey_south", - "page": 28, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMoustache_east", - "page": 28, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMoustache_south", - "page": 28, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinScruffy_east", - "page": 28, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinScruffy_south", - "page": 28, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSenile_east", - "page": 28, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSenile_south", - "page": 28, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideChops_east", - "page": 28, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideChops_south", - "page": 28, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideTufts_east", - "page": 28, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideTufts_south", - "page": 28, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinStrongChops_east", - "page": 28, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinStrongChops_south", - "page": 28, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_east", - "page": 28, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_north", - "page": 28, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_south", - "page": 28, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_east", - "page": 28, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_north", - "page": 28, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_south", - "page": 28, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_east", - "page": 28, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_north", - "page": 28, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_south", - "page": 28, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_east", - "page": 28, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_north", - "page": 28, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_south", - "page": 28, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_east", - "page": 28, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_north", - "page": 28, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_south", - "page": 28, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_east", - "page": 28, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_north", - "page": 29, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_south", - "page": 29, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_east", - "page": 29, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_north", - "page": 29, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_south", - "page": 29, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_east", - "page": 29, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_north", - "page": 29, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_south", - "page": 29, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_east", - "page": 29, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_north", - "page": 29, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_south", - "page": 29, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_east", - "page": 29, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_north", - "page": 29, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_south", - "page": 29, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_east", - "page": 29, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_north", - "page": 29, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_south", - "page": 29, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_east", - "page": 29, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_north", - "page": 29, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_south", - "page": 29, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_east", - "page": 29, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_north", - "page": 29, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_south", - "page": 29, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_east", - "page": 29, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_north", - "page": 29, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_south", - "page": 29, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_east", - "page": 29, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_north", - "page": 29, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_south", - "page": 29, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_east", - "page": 29, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_north", - "page": 29, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_south", - "page": 29, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_east", - "page": 29, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_north", - "page": 29, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_south", - "page": 29, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/beards/Slicked_north", - "page": 29, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_east", - "page": 29, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_north", - "page": 29, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_south", - "page": 29, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_east", - "page": 29, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_north", - "page": 29, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_south", - "page": 29, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_east", - "page": 29, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_north", - "page": 29, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_south", - "page": 29, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_east", - "page": 29, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_north", - "page": 29, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_south", - "page": 29, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_east", - "page": 29, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_north", - "page": 30, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_south", - "page": 30, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_east", - "page": 37, - "x": 912, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_north", - "page": 37, - "x": 1042, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_south", - "page": 37, - "x": 1172, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_east", - "page": 37, - "x": 1302, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_north", - "page": 37, - "x": 1432, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_south", - "page": 37, - "x": 1562, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east", - "page": 37, - "x": 1692, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north", - "page": 37, - "x": 1822, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south", - "page": 37, - "x": 2, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_back", - "page": 37, - "x": 132, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_front", - "page": 37, - "x": 262, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_side", - "page": 37, - "x": 392, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_back", - "page": 37, - "x": 522, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_front", - "page": 37, - "x": 652, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_side", - "page": 37, - "x": 782, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_back", - "page": 37, - "x": 912, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_front", - "page": 37, - "x": 1042, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_side", - "page": 37, - "x": 1172, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_back", - "page": 37, - "x": 1302, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_front", - "page": 37, - "x": 1432, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_side", - "page": 37, - "x": 1562, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_back", - "page": 37, - "x": 1692, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_front", - "page": 37, - "x": 1822, - "y": 652, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_side", - "page": 37, - "x": 2, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east", - "page": 30, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north", - "page": 30, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south", - "page": 30, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east", - "page": 30, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north", - "page": 30, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south", - "page": 30, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/hairs/Ponytails_south", - "page": 37, - "x": 132, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_east", - "page": 37, - "x": 262, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_north", - "page": 37, - "x": 392, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_south", - "page": 37, - "x": 522, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_east", - "page": 37, - "x": 652, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_north", - "page": 37, - "x": 782, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_south", - "page": 37, - "x": 912, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_east", - "page": 37, - "x": 1042, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_north", - "page": 37, - "x": 1172, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_south", - "page": 37, - "x": 1302, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_east", - "page": 37, - "x": 1432, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_north", - "page": 37, - "x": 1562, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_south", - "page": 37, - "x": 1692, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_east", - "page": 37, - "x": 1822, - "y": 782, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_north", - "page": 37, - "x": 2, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_south", - "page": 37, - "x": 132, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_east", - "page": 37, - "x": 262, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_north", - "page": 37, - "x": 392, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_south", - "page": 37, - "x": 522, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_east", - "page": 37, - "x": 652, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_north", - "page": 37, - "x": 782, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_south", - "page": 37, - "x": 912, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_east", - "page": 37, - "x": 1042, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_north", - "page": 37, - "x": 1172, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_south", - "page": 37, - "x": 1302, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_east", - "page": 37, - "x": 1432, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_north", - "page": 37, - "x": 1562, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_south", - "page": 37, - "x": 1692, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_east", - "page": 37, - "x": 1822, - "y": 912, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_north", - "page": 37, - "x": 2, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_south", - "page": 37, - "x": 132, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_east", - "page": 37, - "x": 262, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_north", - "page": 37, - "x": 392, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_south", - "page": 37, - "x": 522, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_east", - "page": 37, - "x": 652, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_north", - "page": 37, - "x": 782, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_south", - "page": 37, - "x": 912, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_east", - "page": 37, - "x": 1042, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_north", - "page": 37, - "x": 1172, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_south", - "page": 37, - "x": 1302, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_east", - "page": 37, - "x": 1432, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_north", - "page": 37, - "x": 1562, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_south", - "page": 37, - "x": 1692, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_east", - "page": 37, - "x": 1822, - "y": 1042, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_north", - "page": 37, - "x": 2, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_south", - "page": 37, - "x": 132, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/afro_back", - "page": 37, - "x": 262, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/afro_front", - "page": 37, - "x": 392, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/afro_side", - "page": 37, - "x": 522, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/bob_back", - "page": 37, - "x": 652, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/bob_front", - "page": 37, - "x": 782, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/bob_side", - "page": 37, - "x": 912, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_back", - "page": 37, - "x": 1042, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_front", - "page": 37, - "x": 1172, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_side", - "page": 37, - "x": 1302, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_back", - "page": 37, - "x": 1432, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_front", - "page": 37, - "x": 1562, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_side", - "page": 37, - "x": 1692, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/curly_back", - "page": 37, - "x": 1822, - "y": 1172, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/curly_front", - "page": 37, - "x": 2, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/curly_side", - "page": 37, - "x": 132, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_back", - "page": 37, - "x": 262, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_front", - "page": 37, - "x": 392, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_side", - "page": 37, - "x": 522, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_back", - "page": 37, - "x": 652, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_front", - "page": 37, - "x": 782, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_side", - "page": 37, - "x": 912, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_back", - "page": 37, - "x": 1042, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_front", - "page": 37, - "x": 1172, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_side", - "page": 37, - "x": 1302, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_back", - "page": 37, - "x": 1432, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_front", - "page": 37, - "x": 1562, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_side", - "page": 37, - "x": 1692, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/long_back", - "page": 37, - "x": 1822, - "y": 1302, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/long_front", - "page": 37, - "x": 2, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/long_side", - "page": 37, - "x": 132, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mess_back", - "page": 37, - "x": 262, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mess_front", - "page": 37, - "x": 392, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mess_side", - "page": 37, - "x": 522, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_back", - "page": 37, - "x": 652, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_front", - "page": 37, - "x": 782, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_side", - "page": 37, - "x": 912, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mop_back", - "page": 37, - "x": 1042, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mop_front", - "page": 37, - "x": 1172, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/mop_side", - "page": 37, - "x": 1302, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_back", - "page": 37, - "x": 1432, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_front", - "page": 37, - "x": 1562, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_side", - "page": 37, - "x": 1692, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/princess_back", - "page": 37, - "x": 1822, - "y": 1432, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/princess_front", - "page": 37, - "x": 2, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/princess_side", - "page": 37, - "x": 132, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_east", - "page": 37, - "x": 262, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_north", - "page": 37, - "x": 392, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_south", - "page": 37, - "x": 522, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_east", - "page": 37, - "x": 652, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_north", - "page": 37, - "x": 782, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_south", - "page": 37, - "x": 912, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_east", - "page": 37, - "x": 1042, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_north", - "page": 37, - "x": 1172, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_south", - "page": 37, - "x": 1302, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_east", - "page": 37, - "x": 1432, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_north", - "page": 37, - "x": 1562, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_south", - "page": 37, - "x": 1692, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_east", - "page": 37, - "x": 1822, - "y": 1562, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_north", - "page": 37, - "x": 2, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_south", - "page": 37, - "x": 132, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_east", - "page": 37, - "x": 262, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_north", - "page": 37, - "x": 392, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_south", - "page": 37, - "x": 522, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_east", - "page": 37, - "x": 652, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_north", - "page": 37, - "x": 782, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_south", - "page": 37, - "x": 912, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_east", - "page": 37, - "x": 1042, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_north", - "page": 37, - "x": 1172, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_south", - "page": 37, - "x": 1302, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_east", - "page": 37, - "x": 1432, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_north", - "page": 37, - "x": 1562, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_south", - "page": 37, - "x": 1692, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_east", - "page": 37, - "x": 1822, - "y": 1692, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_north", - "page": 37, - "x": 2, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_south", - "page": 37, - "x": 132, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scat_back", - "page": 37, - "x": 262, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scat_front", - "page": 37, - "x": 392, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scat_side", - "page": 37, - "x": 522, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_back", - "page": 37, - "x": 652, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_front", - "page": 37, - "x": 782, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_side", - "page": 37, - "x": 912, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_back", - "page": 37, - "x": 1042, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_front", - "page": 37, - "x": 1172, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_side", - "page": 37, - "x": 1302, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_back", - "page": 37, - "x": 1432, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_front", - "page": 37, - "x": 1562, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_side", - "page": 37, - "x": 1692, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_back", - "page": 37, - "x": 1822, - "y": 1822, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_front", - "page": 38, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_side", - "page": 38, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_back", - "page": 38, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_front", - "page": 38, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_side", - "page": 38, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_back", - "page": 38, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_front", - "page": 38, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_side", - "page": 38, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_back", - "page": 38, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_front", - "page": 38, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_side", - "page": 38, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_back", - "page": 38, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_front", - "page": 38, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_side", - "page": 38, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_east", - "page": 30, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_north", - "page": 30, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_south", - "page": 30, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east", - "page": 30, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north", - "page": 30, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south", - "page": 30, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east", - "page": 30, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south", - "page": 30, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east", - "page": 30, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south", - "page": 30, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east", - "page": 30, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south", - "page": 30, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_east", - "page": 30, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_north", - "page": 30, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_south", - "page": 30, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east", - "page": 30, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south", - "page": 30, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_east", - "page": 30, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_north", - "page": 30, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_south", - "page": 30, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_east", - "page": 30, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_north", - "page": 30, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_south", - "page": 30, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pignose/PigNose_east", - "page": 30, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pignose/PigNose_south", - "page": 30, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_east", - "page": 30, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_north", - "page": 30, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_south", - "page": 30, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_east", - "page": 30, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_north", - "page": 30, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_south", - "page": 30, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_east", - "page": 30, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_north", - "page": 30, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_south", - "page": 30, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_east", - "page": 30, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_north", - "page": 30, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_south", - "page": 30, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east", - "page": 30, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north", - "page": 30, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south", - "page": 30, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east", - "page": 30, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north", - "page": 31, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south", - "page": 31, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east", - "page": 31, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north", - "page": 31, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south", - "page": 31, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east", - "page": 31, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north", - "page": 31, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south", - "page": 31, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east", - "page": 31, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north", - "page": 31, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south", - "page": 31, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east", - "page": 31, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north", - "page": 31, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south", - "page": 31, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east", - "page": 31, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north", - "page": 31, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south", - "page": 31, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_back", - "page": 38, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_front", - "page": 38, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_side", - "page": 38, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_back", - "page": 38, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_front", - "page": 38, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_side", - "page": 38, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_back", - "page": 38, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_front", - "page": 38, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_side", - "page": 38, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_back", - "page": 38, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_front", - "page": 38, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_side", - "page": 38, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_back", - "page": 38, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_front", - "page": 38, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_side", - "page": 38, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_back", - "page": 38, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_front", - "page": 38, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_side", - "page": 38, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_back", - "page": 38, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_front", - "page": 38, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_side", - "page": 38, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_back", - "page": 38, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_front", - "page": 38, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_side", - "page": 38, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_back", - "page": 38, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_front", - "page": 38, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_side", - "page": 38, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_back", - "page": 38, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_front", - "page": 38, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_side", - "page": 38, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_back", - "page": 38, - "x": 1822, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_front", - "page": 38, - "x": 2, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_side", - "page": 38, - "x": 132, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_back", - "page": 38, - "x": 262, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_front", - "page": 38, - "x": 392, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_side", - "page": 38, - "x": 522, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_back", - "page": 38, - "x": 652, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_front", - "page": 38, - "x": 782, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_side", - "page": 38, - "x": 912, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_back", - "page": 38, - "x": 1042, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_front", - "page": 38, - "x": 1172, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_side", - "page": 38, - "x": 1302, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_back", - "page": 38, - "x": 1432, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_front", - "page": 38, - "x": 1562, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_side", - "page": 38, - "x": 1692, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east", - "page": 31, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north", - "page": 31, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south", - "page": 31, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_east", - "page": 31, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_north", - "page": 31, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_south", - "page": 31, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_east", - "page": 31, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_north", - "page": 31, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_south", - "page": 31, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_insect/TattooInsect_east", - "page": 31, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_insect/TattooInsect_south", - "page": 31, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_east", - "page": 31, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_north", - "page": 31, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_south", - "page": 31, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_east", - "page": 31, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_north", - "page": 31, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_south", - "page": 31, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_east", - "page": 31, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_north", - "page": 31, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_south", - "page": 31, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_east", - "page": 31, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_north", - "page": 31, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_south", - "page": 31, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east", - "page": 31, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north", - "page": 31, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south", - "page": 31, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_east", - "page": 31, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_north", - "page": 31, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_south", - "page": 31, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east", - "page": 31, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north", - "page": 31, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south", - "page": 31, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_east", - "page": 32, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_north", - "page": 32, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_south", - "page": 32, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_east", - "page": 32, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_north", - "page": 32, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_south", - "page": 32, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_east", - "page": 32, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_north", - "page": 32, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_south", - "page": 32, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east", - "page": 32, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north", - "page": 32, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south", - "page": 32, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_wings/TattooWings_east", - "page": 32, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/body_wings/TattooWings_north", - "page": 32, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east", - "page": 32, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south", - "page": 32, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east", - "page": 32, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north", - "page": 32, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south", - "page": 32, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east", - "page": 32, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north", - "page": 32, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south", - "page": 32, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east", - "page": 32, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south", - "page": 32, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east", - "page": 32, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north", - "page": 32, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south", - "page": 32, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east", - "page": 32, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north", - "page": 32, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south", - "page": 32, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east", - "page": 32, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south", - "page": 32, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east", - "page": 32, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south", - "page": 32, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east", - "page": 32, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south", - "page": 32, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east", - "page": 32, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north", - "page": 32, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south", - "page": 32, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tear/Face_Tear_east", - "page": 32, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tear/Face_Tear_south", - "page": 32, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east", - "page": 32, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north", - "page": 32, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south", - "page": 32, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east", - "page": 32, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south", - "page": 32, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east", - "page": 32, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south", - "page": 32, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/humanlike/ui/iconhuman", - "page": 38, - "x": 728, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_east", - "page": 4, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_north", - "page": 4, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_south", - "page": 4, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Apocriton_east", - "page": 4, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Apocriton_north", - "page": 4, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Apocriton_south", - "page": 5, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_east", - "page": 32, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_north", - "page": 33, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_south", - "page": 33, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_east", - "page": 33, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_north", - "page": 33, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_south", - "page": 33, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_east", - "page": 33, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_north", - "page": 33, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_south", - "page": 33, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_east", - "page": 33, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_north", - "page": 33, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_south", - "page": 33, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_east", - "page": 33, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_north", - "page": 33, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_south", - "page": 33, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centipede_east", - "page": 33, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centipede_north", - "page": 33, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centipede_south", - "page": 33, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_east", - "page": 33, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_north", - "page": 33, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_south", - "page": 33, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centurion_east", - "page": 33, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centurion_north", - "page": 33, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Centurion_south", - "page": 33, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_east", - "page": 5, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_north", - "page": 5, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_south", - "page": 5, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Diabolus_east", - "page": 5, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Diabolus_north", - "page": 5, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Diabolus_south", - "page": 5, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/HalfGestatedMechLarge", - "page": 33, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/HalfGestatedMechSmall", - "page": 38, - "x": 1822, - "y": 392, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/mechanoid/LancerClean_east", - "page": 33, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/LancerClean_north", - "page": 33, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/LancerClean_south", - "page": 33, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Lancer_east", - "page": 33, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Lancer_north", - "page": 33, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Lancer_south", - "page": 33, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_east", - "page": 33, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_north", - "page": 33, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_south", - "page": 33, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Legionary_east", - "page": 33, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Legionary_north", - "page": 33, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Legionary_south", - "page": 33, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_east", - "page": 33, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_north", - "page": 33, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_south", - "page": 33, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Paramedic_east", - "page": 33, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Paramedic_north", - "page": 33, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Paramedic_south", - "page": 33, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_east", - "page": 33, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_north", - "page": 33, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_south", - "page": 33, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Pikeman_east", - "page": 33, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Pikeman_north", - "page": 33, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Pikeman_south", - "page": 33, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_east", - "page": 33, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_north", - "page": 34, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_south", - "page": 34, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scorcher_east", - "page": 34, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scorcher_north", - "page": 34, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scorcher_south", - "page": 34, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_east", - "page": 34, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_north", - "page": 34, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_south", - "page": 34, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scyther_east", - "page": 34, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scyther_north", - "page": 34, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Scyther_south", - "page": 34, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_east", - "page": 34, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_north", - "page": 34, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_south", - "page": 34, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Termite_east", - "page": 34, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Termite_north", - "page": 34, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Termite_south", - "page": 34, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_east", - "page": 34, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_north", - "page": 34, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_south", - "page": 34, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tesseron_east", - "page": 34, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tesseron_north", - "page": 34, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tesseron_south", - "page": 34, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_east", - "page": 34, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_north", - "page": 34, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_south", - "page": 34, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tunneler_east", - "page": 34, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tunneler_north", - "page": 34, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/Tunneler_south", - "page": 34, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_east", - "page": 5, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_north", - "page": 5, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_south", - "page": 6, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Warqueen_east", - "page": 6, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Warqueen_north", - "page": 6, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/Warqueen_south", - "page": 6, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east", - "page": 6, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north", - "page": 6, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south", - "page": 6, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east", - "page": 6, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north", - "page": 6, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south", - "page": 7, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east", - "page": 7, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north", - "page": 7, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south", - "page": 7, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east", - "page": 7, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north", - "page": 7, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south", - "page": 7, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east", - "page": 34, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north", - "page": 34, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south", - "page": 34, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east", - "page": 7, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north", - "page": 7, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south", - "page": 8, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east", - "page": 34, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north", - "page": 34, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south", - "page": 34, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east", - "page": 8, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north", - "page": 8, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south", - "page": 8, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east", - "page": 34, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north", - "page": 34, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south", - "page": 34, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east", - "page": 34, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north", - "page": 34, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south", - "page": 34, - "x": 1292, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east", - "page": 34, - "x": 1550, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north", - "page": 34, - "x": 2, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south", - "page": 34, - "x": 260, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east", - "page": 34, - "x": 518, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north", - "page": 34, - "x": 776, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south", - "page": 34, - "x": 1034, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east", - "page": 34, - "x": 1292, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north", - "page": 34, - "x": 1550, - "y": 1550, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south", - "page": 35, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east", - "page": 35, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north", - "page": 35, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south", - "page": 35, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east", - "page": 35, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north", - "page": 35, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south", - "page": 35, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/pawn/mechanoid/apparel/HeavyPersonalShield", - "page": 38, - "x": 2, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/mechanoid/centipede_back", - "page": 38, - "x": 132, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/mechanoid/centipede_front", - "page": 38, - "x": 262, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/mechanoid/centipede_side", - "page": 38, - "x": 392, - "y": 522, - "w": 128, - "h": 128 - }, - { - "key": "things/pawn/mechanoid/scyther_back", - "page": 38, - "x": 794, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/mechanoid/scyther_front", - "page": 38, - "x": 860, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/mechanoid/scyther_side", - "page": 38, - "x": 926, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/wounda", - "page": 38, - "x": 992, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundb", - "page": 38, - "x": 1058, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundc", - "page": 38, - "x": 1124, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundflesha", - "page": 38, - "x": 1190, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundfleshb", - "page": 38, - "x": 1256, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundfleshc", - "page": 38, - "x": 1322, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundmecha", - "page": 38, - "x": 1388, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundmechb", - "page": 38, - "x": 1454, - "y": 652, - "w": 64, - "h": 64 - }, - { - "key": "things/pawn/wounds/woundmechc", - "page": 38, - "x": 1520, - "y": 652, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "things/pawn/animal/alpaca/Alpaca_east", - "size": 15174, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/alpaca/Alpaca_north", - "size": 15022, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/alpaca/Alpaca_south", - "size": 15204, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_back", - "size": 6106, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_front", - "size": 6308, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/alpaca/alpaca_side", - "size": 6621, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_back", - "size": 5715, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_front", - "size": 5345, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/alpaca/alpacapack_side", - "size": 3607, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/bear/Bear_east", - "size": 15290, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bear/Bear_north", - "size": 16130, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bear/Bear_south", - "size": 18179, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bear/bear_back", - "size": 2811, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/bear/bear_front", - "size": 3159, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/bear/bear_side", - "size": 2751, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/beaver/beaver_back", - "size": 3016, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/beaver/beaver_front", - "size": 2961, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/beaver/beaver_side", - "size": 3270, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/bison/BisonPack_east", - "size": 7447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bison/BisonPack_north", - "size": 13043, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bison/Bison_east", - "size": 47347, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bison/Bison_north", - "size": 34128, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bison/Bison_south", - "size": 41396, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/bison/Dessicated_Bison_east", - "size": 40654, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_east", - "size": 19355, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_eastm", - "size": 3864, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_north", - "size": 14054, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_northm", - "size": 3122, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_south", - "size": 15456, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/Boomalope_southm", - "size": 2914, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_back", - "size": 4546, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_backm", - "size": 1719, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_front", - "size": 4316, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_frontm", - "size": 1717, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_side", - "size": 5953, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomalope/boomalope_sidem", - "size": 2047, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_east", - "size": 6941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_eastm", - "size": 1506, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_north", - "size": 8178, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_northm", - "size": 1418, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_south", - "size": 7429, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/Boomrat_southm", - "size": 1321, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_back", - "size": 2431, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_backm", - "size": 1325, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_front", - "size": 2487, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_frontm", - "size": 965, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_side", - "size": 1844, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/boomrat/boomrat_sidem", - "size": 712, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/capybara/Capybara_east", - "size": 10369, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/capybara/Capybara_north", - "size": 7798, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/capybara/Capybara_south", - "size": 9925, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/capybara/capybara_back", - "size": 2385, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/capybara/capybara_front", - "size": 2954, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/capybara/capybara_side", - "size": 2908, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/caribou/Caribou_east", - "size": 25674, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/caribou/Caribou_north", - "size": 22328, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/caribou/Caribou_south", - "size": 24525, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/caribou/caribou_back", - "size": 6557, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/caribou/caribou_front", - "size": 6339, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/caribou/caribou_side", - "size": 7125, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_back", - "size": 5145, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_front", - "size": 4998, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cassowary/cassowary_side", - "size": 4722, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cat/Cat_east", - "size": 6015, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cat/Cat_north", - "size": 4906, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cat/Cat_south", - "size": 5220, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cat/cat_back", - "size": 1296, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cat/cat_front", - "size": 925, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cat/cat_side", - "size": 1811, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chicken/Chicken_east", - "size": 11049, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chicken/Chicken_north", - "size": 11903, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chicken/Chicken_south", - "size": 11442, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chicken/chicken_back", - "size": 1956, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chicken/chicken_front", - "size": 1970, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chicken/chicken_side", - "size": 1765, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_east", - "size": 12498, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_eastm", - "size": 3353, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_north", - "size": 11182, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_northm", - "size": 3418, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_south", - "size": 11585, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/Chinchilla_southm", - "size": 3672, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_back", - "size": 1949, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_front", - "size": 1651, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/chinchilla/chinchilla_side", - "size": 2273, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cobra/cobra_back", - "size": 5437, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cobra/cobra_front", - "size": 4891, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cobra/cobra_side", - "size": 6161, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cougar/Cougar_east", - "size": 11501, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cougar/Cougar_north", - "size": 9780, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cougar/Cougar_south", - "size": 9178, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cougar/cougar_back", - "size": 2492, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cougar/cougar_front", - "size": 2379, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cougar/cougar_side", - "size": 2896, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/Bull_east", - "size": 18337, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/Bull_north", - "size": 16659, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/Bull_south", - "size": 18389, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/Cow_east", - "size": 18576, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/Cow_north", - "size": 15726, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/Cow_south", - "size": 17412, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/cow/bull_back", - "size": 3251, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/bull_front", - "size": 3025, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/bull_side", - "size": 3015, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/cow_back", - "size": 2993, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/cow_front", - "size": 2945, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/cow/cow_side", - "size": 3019, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_east", - "size": 13678, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_eastm", - "size": 6855, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_north", - "size": 11723, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_northm", - "size": 6728, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_south", - "size": 11570, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerBaby_southm", - "size": 7297, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_east", - "size": 12793, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_eastm", - "size": 5788, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_north", - "size": 10624, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_northm", - "size": 6129, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_south", - "size": 11914, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerFemale_southm", - "size": 7497, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_east", - "size": 15767, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_eastm", - "size": 5590, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_north", - "size": 16802, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_northm", - "size": 5953, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_south", - "size": 18093, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/DeerMale_southm", - "size": 7748, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerBaby_east", - "size": 15459, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerFemale_east", - "size": 17222, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/Dessicated_DeerMale_east", - "size": 14222, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_back", - "size": 3499, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_backm", - "size": 1759, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_front", - "size": 3387, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_frontm", - "size": 1512, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_side", - "size": 4492, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerbaby_sidem", - "size": 1980, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_back", - "size": 5073, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_backm", - "size": 1820, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_front", - "size": 3746, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_frontm", - "size": 1482, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_side", - "size": 4703, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deerfemale_sidem", - "size": 1605, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_back", - "size": 6894, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_backm", - "size": 2437, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_front", - "size": 5945, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_frontm", - "size": 2332, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_side", - "size": 6504, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/deer/deermale_sidem", - "size": 2224, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedmedium_back", - "size": 21684, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedsmall_back", - "size": 1918, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dessicated/critterdessicatedsnake_back", - "size": 9812, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/donkey/Dessicated_Donkey_east", - "size": 13032, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_east", - "size": 8787, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_north", - "size": 10999, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/DonkeyPack_south", - "size": 10191, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/Donkey_east", - "size": 19447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/Donkey_north", - "size": 15442, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/donkey/Donkey_south", - "size": 15264, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_east", - "size": 16513, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_north", - "size": 12665, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dromedary/Dromedary_south", - "size": 14048, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_back", - "size": 3441, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_front", - "size": 3590, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dromedary/dromedary_side", - "size": 5337, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dromedary/dromedarypack_back", - "size": 2742, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dromedary/dromedarypack_side", - "size": 1770, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/dryad_carrier/Dessicated_DryadCarrier_east", - "size": 26701, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_east", - "size": 30962, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_north", - "size": 34016, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_carrier/DryadCarrier_south", - "size": 30107, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/Dessicated_DryadWoodmaker_east", - "size": 4822, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_east", - "size": 33912, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_north", - "size": 34632, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/dryad_woodmaker/DryadWoodmaker_south", - "size": 31042, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_east", - "size": 10972, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_north", - "size": 9494, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckFemale_south", - "size": 9800, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckMale_east", - "size": 11152, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckMale_north", - "size": 10757, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/duck/DuckMale_south", - "size": 10107, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elephant/Elephant_east", - "size": 13820, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elephant/Elephant_north", - "size": 12453, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elephant/Elephant_south", - "size": 14575, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elephant/elephant_back", - "size": 3754, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elephant/elephant_front", - "size": 11049, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elephant/elephant_side", - "size": 4346, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_east", - "size": 6395, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_north", - "size": 4787, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/ElkFemale_south", - "size": 4358, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/ElkMale_east", - "size": 6787, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/ElkMale_north", - "size": 5726, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/ElkMale_south", - "size": 4936, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/elk/elkfemale_back", - "size": 6037, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/elkfemale_front", - "size": 5004, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/elkfemale_side", - "size": 6027, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/elkmale_back", - "size": 8859, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/elkmale_front", - "size": 7700, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/elk/elkmale_side", - "size": 7845, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/emu/emu_back", - "size": 4385, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/emu/emu_front", - "size": 4309, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/emu/emu_side", - "size": 5106, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_east", - "size": 2244, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_north", - "size": 1795, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_arctic/Fox_Arctic_south", - "size": 2306, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_east", - "size": 2493, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_north", - "size": 2028, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_fennec/Fox_Fennec_south", - "size": 2566, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_east", - "size": 2385, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_north", - "size": 2113, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/fox_red/Fox_Red_south", - "size": 2489, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_back", - "size": 3761, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_front", - "size": 4237, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxarctic/foxarctic_side", - "size": 4313, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_back", - "size": 4432, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_front", - "size": 4410, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxfennec/foxfennec_side", - "size": 4774, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxred/foxred_back", - "size": 4005, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxred/foxred_front", - "size": 4050, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/foxred/foxred_side", - "size": 4486, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_back", - "size": 4053, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_front", - "size": 4906, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/gazelle/gazelle_side", - "size": 4728, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/goat/Dessicated_GoatFemale_east", - "size": 13905, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/Dessicated_GoatMale_east", - "size": 15115, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_east", - "size": 16423, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_north", - "size": 16234, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatFemale_south", - "size": 16104, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatMale_east", - "size": 19887, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatMale_north", - "size": 19682, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goat/GoatMale_south", - "size": 19179, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goose/Dessicated_Goose_east", - "size": 18419, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goose/Goose_east", - "size": 16033, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goose/Goose_north", - "size": 17217, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/goose/Goose_south", - "size": 16268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/Dessicated_GuineaPig_east", - "size": 7904, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_east", - "size": 9556, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_north", - "size": 8265, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig1_south", - "size": 9478, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_east", - "size": 8203, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_north", - "size": 7612, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig2_south", - "size": 8350, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_east", - "size": 9459, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_north", - "size": 8178, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig3_south", - "size": 9263, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_east", - "size": 7817, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_eastm", - "size": 2922, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_north", - "size": 7253, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_northm", - "size": 2567, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_south", - "size": 7941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/guineapig/GuineaPig_southm", - "size": 2829, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/hare/Hare_east", - "size": 5021, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/hare/Hare_north", - "size": 4840, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/hare/Hare_south", - "size": 5451, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/hare/hare_back", - "size": 1088, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/hare/hare_front", - "size": 1119, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/hare/hare_side", - "size": 1066, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/horse/Dessicated_Horse_east", - "size": 18472, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse1_east", - "size": 19079, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse1_north", - "size": 14052, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse1_south", - "size": 13872, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse2_east", - "size": 20319, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse2_north", - "size": 15006, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse2_south", - "size": 14652, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse3_east", - "size": 20012, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse3_north", - "size": 14962, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse3_south", - "size": 14633, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse4_east", - "size": 15804, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse4_north", - "size": 12541, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse4_south", - "size": 12288, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse5_east", - "size": 20111, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse5_north", - "size": 14805, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse5_south", - "size": 14497, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse6_east", - "size": 17735, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse6_north", - "size": 13458, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse6_south", - "size": 13237, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/HorsePack_east", - "size": 8021, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/HorsePack_north", - "size": 11615, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/HorsePack_south", - "size": 11374, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse_east", - "size": 17341, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse_north", - "size": 14121, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/horse/Horse_south", - "size": 13264, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_east", - "size": 8400, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_eastm", - "size": 7778, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_north", - "size": 7057, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_northm", - "size": 6991, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_south", - "size": 7844, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/Husky_southm", - "size": 7250, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/husky/husky_back", - "size": 4095, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/husky/husky_backm", - "size": 1391, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/husky/husky_front", - "size": 4140, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/husky/husky_frontm", - "size": 1592, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/husky/husky_side", - "size": 5563, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/husky/husky_sidem", - "size": 1497, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_east", - "size": 19069, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_eastm", - "size": 4892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_north", - "size": 18584, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_northm", - "size": 6940, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_south", - "size": 22268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexFemale_southm", - "size": 7794, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_east", - "size": 23296, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_eastm", - "size": 6599, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_north", - "size": 21497, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_northm", - "size": 6967, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_south", - "size": 25599, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/IbexMale_southm", - "size": 8216, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_back", - "size": 4764, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_backm", - "size": 1905, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_front", - "size": 5258, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_frontm", - "size": 2161, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_side", - "size": 5443, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexfemale_sidem", - "size": 1935, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_back", - "size": 5260, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_backm", - "size": 1868, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_front", - "size": 5951, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_frontm", - "size": 2213, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_side", - "size": 6326, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ibex/ibexmale_sidem", - "size": 1929, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/iguana/Iguana_east", - "size": 14731, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/iguana/Iguana_north", - "size": 13419, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/iguana/Iguana_south", - "size": 12516, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/iguana/iguana_back", - "size": 2877, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/iguana/iguana_front", - "size": 2907, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/iguana/iguana_side", - "size": 4122, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/labrador/Labrador_east", - "size": 2028, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/labrador/Labrador_north", - "size": 1611, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/labrador/Labrador_south", - "size": 1833, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/labrador/labrador_back", - "size": 2507, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/labrador/labrador_front", - "size": 2855, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/labrador/labrador_side", - "size": 3022, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_east", - "size": 17038, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_eastm", - "size": 4975, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_north", - "size": 12222, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_northm", - "size": 4494, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_south", - "size": 13102, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/Lynx_southm", - "size": 5326, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_back", - "size": 4198, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_backm", - "size": 1374, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_front", - "size": 4984, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_frontm", - "size": 1978, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_side", - "size": 5587, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/lynx/lynx_sidem", - "size": 1869, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_east", - "size": 8746, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_north", - "size": 9273, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megascarab/Megascarab_south", - "size": 9840, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_back", - "size": 2299, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_front", - "size": 2699, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megascarab/megascarab_side", - "size": 2212, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_east", - "size": 15870, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_north", - "size": 12805, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megasloth/Megasloth_south", - "size": 16936, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_back", - "size": 3670, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_front", - "size": 4313, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megasloth/megasloth_side", - "size": 5255, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_east", - "size": 18264, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_north", - "size": 13496, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megaspider/Megaspider_south", - "size": 15910, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_back", - "size": 3375, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_front", - "size": 3518, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/megaspider/megaspider_side", - "size": 4445, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/monkey/Monkey_east", - "size": 9457, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/monkey/Monkey_north", - "size": 8810, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/monkey/Monkey_south", - "size": 9144, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/monkey/monkey_back", - "size": 11632, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/monkey/monkey_front", - "size": 11189, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/monkey/monkey_side", - "size": 17207, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_east", - "size": 48573, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_north", - "size": 33688, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/muffalo/Muffalo_south", - "size": 40144, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_back", - "size": 12981, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_front", - "size": 15261, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalo_side", - "size": 18396, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_back", - "size": 9584, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_front", - "size": 9969, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalodessicated_side", - "size": 22722, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalopack_back", - "size": 11396, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/muffalo/muffalopack_side", - "size": 7019, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_back", - "size": 5380, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_backm", - "size": 1605, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_front", - "size": 5450, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_frontm", - "size": 1776, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_side", - "size": 5672, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/ostrich/ostrich_sidem", - "size": 1400, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/pig/pig_back", - "size": 4176, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/pig/pig_front", - "size": 4323, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/pig/pig_side", - "size": 3451, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_east", - "size": 15020, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_eastm", - "size": 6893, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_north", - "size": 15722, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_northm", - "size": 6524, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_south", - "size": 17694, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/Raccoon_southm", - "size": 7326, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_back", - "size": 4374, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_backm", - "size": 1324, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_front", - "size": 4239, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_frontm", - "size": 1719, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_side", - "size": 4669, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/raccoon/raccoon_sidem", - "size": 1362, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/Rat_east", - "size": 11013, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/Rat_eastm", - "size": 4530, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/Rat_north", - "size": 10716, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/Rat_northm", - "size": 4834, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/Rat_south", - "size": 11445, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/Rat_southm", - "size": 4827, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rat/rat_back", - "size": 2743, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/rat_backm", - "size": 1097, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/rat_front", - "size": 2706, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/rat_frontm", - "size": 1087, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/rat_side", - "size": 2696, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rat/rat_sidem", - "size": 1002, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rhino/Rhino_east", - "size": 16111, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rhino/Rhino_north", - "size": 8992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rhino/Rhino_south", - "size": 11268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/rhino/rhino_back", - "size": 3576, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rhino/rhino_front", - "size": 3767, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/rhino/rhino_side", - "size": 6855, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/sheep/Dessicated_SheepFemale_east", - "size": 16184, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/Dessicated_SheepMale_east", - "size": 18132, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_east", - "size": 17533, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_north", - "size": 13290, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepFemale_south", - "size": 18361, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_east", - "size": 20904, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_north", - "size": 16717, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/sheep/SheepMale_south", - "size": 21125, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_east", - "size": 15568, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_north", - "size": 12077, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/spelopede/Spelopede_south", - "size": 15003, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_back", - "size": 2933, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_front", - "size": 3271, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/spelopede/spelopede_side", - "size": 3580, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_east", - "size": 1548, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_north", - "size": 1453, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/squirrel/Squirrel_south", - "size": 1546, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_back", - "size": 2036, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_front", - "size": 2275, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/squirrel/squirrel_side", - "size": 2414, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_east", - "size": 64264, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_north", - "size": 44006, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/thrumbo/Thrumbo_south", - "size": 46582, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_back", - "size": 6876, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_front", - "size": 7776, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/thrumbo/thrumbo_side", - "size": 11320, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_east", - "size": 16287, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_eastm", - "size": 6745, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_north", - "size": 13518, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_northm", - "size": 6317, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_south", - "size": 14087, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerBaby_southm", - "size": 5803, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_east", - "size": 15440, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_eastm", - "size": 6226, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_north", - "size": 13151, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_northm", - "size": 6294, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_south", - "size": 14759, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerFemale_southm", - "size": 5603, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_east", - "size": 22521, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_eastm", - "size": 7421, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_north", - "size": 23072, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_northm", - "size": 6787, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_south", - "size": 24992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tofix_deer/DeerMale_southm", - "size": 6757, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_back", - "size": 3351, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_front", - "size": 3324, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/tortoise/tortoise_side", - "size": 3770, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/toxalope/Dessicated_Toxalope_east", - "size": 24148, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_east", - "size": 39602, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_north", - "size": 31427, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/toxalope/Toxalope_south", - "size": 32491, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_east", - "size": 23514, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_north", - "size": 22376, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyHen_south", - "size": 18318, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_east", - "size": 27356, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_north", - "size": 20269, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/TurkeyTom_south", - "size": 29715, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_back", - "size": 4961, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_front", - "size": 4711, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/turkey/turkeyhen_side", - "size": 5537, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_back", - "size": 6263, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_front", - "size": 7559, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/turkey/turkeytom_side", - "size": 6923, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/warg/Warg_east", - "size": 17198, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/warg/Warg_north", - "size": 20738, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/warg/Warg_south", - "size": 19922, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/warg/warg_back", - "size": 3310, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/warg/warg_front", - "size": 3544, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/warg/warg_side", - "size": 3123, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_east", - "size": 10637, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_north", - "size": 10482, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wildboar/WildBoar_south", - "size": 10279, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_back", - "size": 1879, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_front", - "size": 2198, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wildboar/wildboar_side", - "size": 2260, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_east", - "size": 15434, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_north", - "size": 14395, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_arctic/Wolf_Arctic_south", - "size": 15484, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_east", - "size": 9177, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_north", - "size": 7925, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber2_south", - "size": 9483, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_east", - "size": 14866, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_north", - "size": 13892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber3_south", - "size": 15104, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_east", - "size": 13881, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_north", - "size": 11766, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber4_south", - "size": 13631, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_east", - "size": 14653, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_north", - "size": 12658, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolf_timber/Wolf_Timber_south", - "size": 14252, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_back", - "size": 4681, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_front", - "size": 5095, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolfarctic/wolfarctic_side", - "size": 4950, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_back", - "size": 4869, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_front", - "size": 4935, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/wolftimber/wolftimber_side", - "size": 5245, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/yak/Dessicated_YakFemale_east", - "size": 15930, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/Dessicated_YakMale_east", - "size": 16980, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakFemalePack_east", - "size": 7447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakFemalePack_north", - "size": 13043, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakFemale_east", - "size": 16271, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakFemale_north", - "size": 12731, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakFemale_south", - "size": 14087, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakMalePack_east", - "size": 7447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakMalePack_north", - "size": 13043, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakMale_east", - "size": 17661, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakMale_north", - "size": 14438, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yak/YakMale_south", - "size": 16462, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_back", - "size": 3425, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_front", - "size": 3016, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/animal/yorkshireterrier/yorkshireterrier_side", - "size": 3811, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/effects/mentalstateimminent", - "size": 1375, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/effects/unhappy", - "size": 861, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/Mechlink", - "size": 9328, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet", - "size": 1121, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_back", - "size": 1533, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_front", - "size": 1674, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/advancedhelmet/advancedhelmet_side", - "size": 1544, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset", - "size": 7121, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_east", - "size": 11480, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_north", - "size": 10827, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/airwireheadset/AirwireHeadset_south", - "size": 10923, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset", - "size": 6746, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_east", - "size": 10405, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_north", - "size": 8912, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/arrayheadset/ArrayHeadset_south", - "size": 10892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap", - "size": 7102, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_east", - "size": 12793, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_north", - "size": 13830, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/authoritycap/AuthorityCap_south", - "size": 12044, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack", - "size": 7503, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_east", - "size": 13804, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_north", - "size": 14000, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bandwidthpack/BandwidthPack_south", - "size": 13663, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret", - "size": 6479, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_east", - "size": 8502, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_north", - "size": 6579, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_south", - "size": 8163, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/beret/Beret_west", - "size": 8095, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold", - "size": 7225, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_east", - "size": 9807, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_north", - "size": 8817, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/blindfold/Blindfold_south", - "size": 9128, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap", - "size": 9604, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_east", - "size": 13508, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_north", - "size": 12916, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Fat_south", - "size": 14681, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_east", - "size": 11833, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_north", - "size": 11470, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Female_south", - "size": 11976, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_east", - "size": 13399, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_north", - "size": 12761, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Hulk_south", - "size": 14358, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_east", - "size": 11177, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_north", - "size": 11131, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Male_south", - "size": 12697, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_east", - "size": 10835, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_north", - "size": 9722, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_Thin_south", - "size": 11054, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bodystrap/BodyStrap_south", - "size": 2455, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat", - "size": 1352, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_back", - "size": 2006, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_front", - "size": 2020, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/bowlerhat/bowlerhat_side", - "size": 2210, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack", - "size": 26336, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_east", - "size": 20412, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_north", - "size": 26336, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadshieldpack/BroadshieldPack_south", - "size": 14566, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap", - "size": 9243, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_east", - "size": 14657, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_north", - "size": 14865, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/broadwrap/Broadwrap_south", - "size": 15152, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka", - "size": 12501, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_east", - "size": 24636, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_north", - "size": 21266, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Fat_south", - "size": 26484, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_east", - "size": 20753, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_north", - "size": 17277, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Female_south", - "size": 22371, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_east", - "size": 23107, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_north", - "size": 21413, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Hulk_south", - "size": 26686, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_east", - "size": 19967, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_north", - "size": 18559, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Male_south", - "size": 23015, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_east", - "size": 20052, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_north", - "size": 16815, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/burka/Burka_Thin_south", - "size": 21132, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape", - "size": 9869, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_east", - "size": 13556, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_north", - "size": 12802, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Fat_south", - "size": 11476, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_east", - "size": 11764, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_north", - "size": 11175, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Female_south", - "size": 10114, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_east", - "size": 14041, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_north", - "size": 14544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Hulk_south", - "size": 13080, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_east", - "size": 11349, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_north", - "size": 11447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Male_south", - "size": 10305, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_east", - "size": 10170, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_north", - "size": 9563, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cape/Cape_Thin_south", - "size": 8731, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor", - "size": 12156, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_east", - "size": 22665, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_north", - "size": 18498, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Fat_south", - "size": 21315, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_east", - "size": 17632, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_north", - "size": 15614, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Female_south", - "size": 17084, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_east", - "size": 22600, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_north", - "size": 19592, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Hulk_south", - "size": 21235, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_east", - "size": 16942, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_north", - "size": 15725, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Male_south", - "size": 17396, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_east", - "size": 13707, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_north", - "size": 13478, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmor/CataphractArmor_Thin_south", - "size": 14604, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet", - "size": 9649, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_east", - "size": 14965, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_north", - "size": 11723, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cataphractarmorhelmet/CataphractHelmet_south", - "size": 13071, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask", - "size": 7332, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_east", - "size": 9216, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_north", - "size": 8425, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/clothmask/ClothMask_south", - "size": 10122, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack", - "size": 7591, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_east", - "size": 12449, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_north", - "size": 13257, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/controlpack/ControlPack_south", - "size": 12649, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet", - "size": 5518, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_east", - "size": 8842, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_north", - "size": 7697, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/coronet/Coronet_south", - "size": 8026, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal", - "size": 10247, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_east", - "size": 9041, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_north", - "size": 11577, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Fat_south", - "size": 11776, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_east", - "size": 6675, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_north", - "size": 9022, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Female_south", - "size": 8109, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_east", - "size": 7771, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_north", - "size": 11268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Hulk_south", - "size": 9721, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_east", - "size": 5406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_north", - "size": 7901, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Male_south", - "size": 6273, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_east", - "size": 5577, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_north", - "size": 6257, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/corsetroyal/CorsetRoyal_Thin_south", - "size": 4848, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat", - "size": 1693, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_back", - "size": 1916, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_front", - "size": 1849, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/cowboyhat/cowboyhat_side", - "size": 1550, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown", - "size": 5940, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_east", - "size": 11053, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_north", - "size": 9985, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crown/Crown_south", - "size": 8188, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic", - "size": 11464, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_east", - "size": 14483, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_north", - "size": 16637, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/crownstellic/CrownStellic_south", - "size": 16403, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster", - "size": 2746, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_back", - "size": 3173, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_front", - "size": 3943, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_fat_side", - "size": 3289, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_back", - "size": 2765, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_front", - "size": 3239, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_female_side", - "size": 2126, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_back", - "size": 3520, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_front", - "size": 4268, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_hulk_side", - "size": 3422, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_back", - "size": 2800, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_front", - "size": 3399, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_male_side", - "size": 2482, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_back", - "size": 2224, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_front", - "size": 2607, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/duster/duster_thin_side", - "size": 2226, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet", - "size": 7110, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_east", - "size": 10510, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_north", - "size": 9372, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexhelmet/EltexHelmet_south", - "size": 9917, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe", - "size": 21265, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_east", - "size": 12163, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_north", - "size": 13966, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Fat_south", - "size": 14067, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_east", - "size": 11243, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_north", - "size": 11044, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Female_south", - "size": 11195, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_east", - "size": 13488, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_north", - "size": 16037, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Hulk_south", - "size": 18077, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_east", - "size": 10553, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_north", - "size": 12265, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Male_south", - "size": 14430, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_east", - "size": 9395, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_north", - "size": 9358, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexrobe/EltexRobe_Thin_south", - "size": 10663, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt", - "size": 18117, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_east", - "size": 10643, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Fat_north", - "size": 13104, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_east", - "size": 9918, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_north", - "size": 11095, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Female_south", - "size": 12646, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_east", - "size": 11794, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_north", - "size": 14417, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Hulk_south", - "size": 16371, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_east", - "size": 8827, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_north", - "size": 10519, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Male_south", - "size": 11427, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_east", - "size": 7624, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_north", - "size": 6497, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt_Thin_south", - "size": 7164, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/eltexshirt/EltexShirt__Fat_south", - "size": 14692, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat", - "size": 8892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_east", - "size": 14773, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_north", - "size": 15486, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/flophat/Flophat_south", - "size": 14919, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask", - "size": 8768, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_east", - "size": 15113, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_north", - "size": 10620, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gasmask/GasMask_south", - "size": 14687, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor", - "size": 13612, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_east", - "size": 21735, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_north", - "size": 16846, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Fat_south", - "size": 24686, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_east", - "size": 16318, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_north", - "size": 13538, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Female_south", - "size": 18440, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_east", - "size": 22677, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_north", - "size": 18145, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Hulk_south", - "size": 26951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_east", - "size": 17559, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_north", - "size": 14049, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Male_south", - "size": 19889, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_east", - "size": 16180, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_north", - "size": 12601, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/grenadierarmor/GrenadierArmor_Thin_south", - "size": 18045, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink", - "size": 6013, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_east", - "size": 10501, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_north", - "size": 9630, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/gunlink/Gunlink_south", - "size": 9989, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap", - "size": 8188, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_east", - "size": 12919, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_north", - "size": 12726, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/headwrap/Headwrap_south", - "size": 13117, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier", - "size": 8782, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_east", - "size": 13286, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_north", - "size": 12926, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Fat_south", - "size": 14315, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_east", - "size": 11738, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_north", - "size": 11989, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Female_south", - "size": 13210, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_east", - "size": 13096, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_north", - "size": 13117, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Hulk_south", - "size": 14217, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_east", - "size": 11794, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_north", - "size": 12504, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Male_south", - "size": 13594, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_east", - "size": 11340, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_north", - "size": 11447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/heavybandolier/HeavyBandolier_Thin_south", - "size": 12470, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood", - "size": 11014, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_east", - "size": 14559, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_north", - "size": 14256, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/hood/Hood_south", - "size": 16193, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset", - "size": 6522, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_east", - "size": 10352, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_north", - "size": 9048, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/integratorheadset/IntegratorHeadset_south", - "size": 10405, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket", - "size": 2414, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_back", - "size": 2680, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_front", - "size": 3611, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_fat_side", - "size": 2457, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_back", - "size": 1610, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_front", - "size": 2305, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_female_side", - "size": 1666, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_back", - "size": 2445, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_front", - "size": 3634, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_hulk_side", - "size": 2491, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_back", - "size": 1907, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_front", - "size": 2645, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_male_side", - "size": 1940, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_back", - "size": 1335, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_front", - "size": 1857, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jacket/jacket_thin_side", - "size": 1671, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack", - "size": 12897, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_east", - "size": 11526, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_north", - "size": 12897, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/jumppack/JumpPack_south", - "size": 13820, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet", - "size": 8348, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_east", - "size": 13172, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_north", - "size": 14327, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidhelmet/KidHelmet_south", - "size": 12692, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidpants/KidPants", - "size": 13176, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka", - "size": 7592, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_east", - "size": 15192, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_north", - "size": 12299, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidparka/KidParka_Child_south", - "size": 12907, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper", - "size": 12178, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_east", - "size": 14629, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_north", - "size": 15146, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidromper/KidRomper_Child_south", - "size": 16140, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt", - "size": 8399, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_east", - "size": 11476, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_north", - "size": 11492, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidshirt/KidShirt_Child_south", - "size": 12707, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear", - "size": 8663, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_east", - "size": 12630, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_north", - "size": 11859, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/kidtribal/KidTribalwear_Child_south", - "size": 12150, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat", - "size": 21539, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_east", - "size": 11487, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_north", - "size": 11760, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Fat_south", - "size": 15468, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_east", - "size": 9866, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_north", - "size": 9172, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Female_south", - "size": 12830, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_east", - "size": 11753, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_north", - "size": 11989, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Hulk_south", - "size": 16446, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_east", - "size": 9268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_north", - "size": 8705, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Male_south", - "size": 12385, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_east", - "size": 8310, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_north", - "size": 6409, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/labcoat/LabCoat_Thin_south", - "size": 9512, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat", - "size": 8221, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_east", - "size": 12175, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_north", - "size": 11227, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/ladieshat/LadiesHat_south", - "size": 11157, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor", - "size": 15239, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_east", - "size": 21317, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_north", - "size": 19369, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Fat_south", - "size": 25610, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_east", - "size": 17441, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_north", - "size": 16336, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Female_south", - "size": 19331, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_east", - "size": 22222, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_north", - "size": 21965, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Hulk_south", - "size": 27210, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_east", - "size": 16864, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_north", - "size": 17592, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Male_south", - "size": 20332, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_east", - "size": 13853, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_north", - "size": 15012, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/locustarmor/LocustArmor_Thin_south", - "size": 16020, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet", - "size": 13549, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_east", - "size": 16652, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_north", - "size": 15903, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechcommanderhelmet/MechcommanderHelmet_south", - "size": 19292, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet", - "size": 15709, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_east", - "size": 23522, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_north", - "size": 16997, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordhelmet/MechlordHelmet_south", - "size": 26654, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit", - "size": 11268, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_east", - "size": 20390, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_north", - "size": 20942, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Fat_south", - "size": 23501, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_east", - "size": 16615, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_north", - "size": 17008, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Female_south", - "size": 19484, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_east", - "size": 20414, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_north", - "size": 21269, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Hulk_south", - "size": 24854, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_east", - "size": 17142, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_north", - "size": 18062, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Male_south", - "size": 19241, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_east", - "size": 14869, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_north", - "size": 15272, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/mechlordsuit/MechlordSuit_Thin_south", - "size": 16470, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka", - "size": 2478, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_back", - "size": 3084, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_front", - "size": 4367, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_fat_side", - "size": 4021, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_back", - "size": 2000, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_front", - "size": 2595, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_female_side", - "size": 2609, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_back", - "size": 2468, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_front", - "size": 4180, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_hulk_side", - "size": 3298, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_back", - "size": 2101, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_front", - "size": 2570, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_male_side", - "size": 2351, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_back", - "size": 1697, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_front", - "size": 2514, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/parka/parka_thin_side", - "size": 2173, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor", - "size": 15678, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_east", - "size": 24786, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_north", - "size": 25117, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Fat_south", - "size": 29717, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_east", - "size": 21851, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_north", - "size": 19107, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Female_south", - "size": 21850, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_east", - "size": 24871, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_north", - "size": 25750, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Hulk_south", - "size": 31089, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_east", - "size": 19054, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_north", - "size": 21977, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Male_south", - "size": 24491, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_east", - "size": 17493, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_north", - "size": 17892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/phoenixarmor/PhoenixArmor_Thin_south", - "size": 20668, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor", - "size": 14275, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_east", - "size": 17432, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_north", - "size": 16860, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Fat_south", - "size": 23293, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_east", - "size": 12548, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_north", - "size": 12811, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Female_south", - "size": 16478, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_east", - "size": 19045, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_north", - "size": 17855, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Hulk_south", - "size": 24144, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_east", - "size": 13837, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_north", - "size": 13934, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Male_south", - "size": 18138, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_east", - "size": 12128, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_north", - "size": 11864, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/PowerArmor_Thin_south", - "size": 15338, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_back", - "size": 3550, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_front", - "size": 4327, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_fat_side", - "size": 3527, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_back", - "size": 2614, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_front", - "size": 2734, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_female_side", - "size": 2370, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_back", - "size": 3759, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_front", - "size": 4549, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_hulk_side", - "size": 3853, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_back", - "size": 2648, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_front", - "size": 3206, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_male_side", - "size": 2716, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_back", - "size": 2316, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_front", - "size": 2622, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmor/powerarmor_thin_side", - "size": 2216, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet", - "size": 1856, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_back", - "size": 1704, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_front", - "size": 2542, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/powerarmorhelmet/powerarmorhelmet_side", - "size": 2247, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor", - "size": 13790, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_east", - "size": 24817, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_eastm", - "size": 5890, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_north", - "size": 23588, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_northm", - "size": 5424, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_south", - "size": 26660, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Fat_southm", - "size": 5875, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_east", - "size": 19334, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_eastm", - "size": 4697, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_north", - "size": 19834, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_northm", - "size": 4716, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_south", - "size": 20937, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Female_southm", - "size": 4896, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_east", - "size": 24774, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_eastm", - "size": 5929, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_north", - "size": 24768, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_northm", - "size": 5462, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_south", - "size": 27527, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Hulk_southm", - "size": 5967, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_east", - "size": 18760, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_eastm", - "size": 4794, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_north", - "size": 19171, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_northm", - "size": 5054, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_south", - "size": 21438, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Male_southm", - "size": 5292, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_east", - "size": 14969, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_eastm", - "size": 4286, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_north", - "size": 16478, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_northm", - "size": 4571, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_south", - "size": 17999, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_Thin_southm", - "size": 4917, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphractarmor/PrestigeCataphractArmor_m", - "size": 3479, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet", - "size": 9939, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_east", - "size": 14472, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_eastm", - "size": 4827, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_m", - "size": 3078, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_north", - "size": 13891, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_northm", - "size": 3295, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_south", - "size": 14054, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigecataphracthelmet/PrestigeCataphractHelmet_southm", - "size": 4377, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor", - "size": 13460, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_east", - "size": 19144, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_eastm", - "size": 4661, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_north", - "size": 23771, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_northm", - "size": 5592, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_south", - "size": 25821, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Fat_southm", - "size": 5240, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_east", - "size": 15169, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_eastm", - "size": 3868, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_north", - "size": 17724, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_northm", - "size": 4536, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_south", - "size": 19337, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Female_southm", - "size": 4374, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_east", - "size": 20361, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_eastm", - "size": 4863, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_north", - "size": 25588, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_northm", - "size": 6067, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_south", - "size": 27692, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Hulk_southm", - "size": 5698, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_east", - "size": 15402, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_eastm", - "size": 4295, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_north", - "size": 20647, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_northm", - "size": 5313, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_south", - "size": 20359, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Male_southm", - "size": 4907, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_east", - "size": 13450, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_eastm", - "size": 4235, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_north", - "size": 16320, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_northm", - "size": 4847, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_south", - "size": 16361, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_Thin_southm", - "size": 4527, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinearmor/PrestigeMarineArmor_m", - "size": 3418, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet", - "size": 10464, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_east", - "size": 6552, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_eastm", - "size": 1167, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_m", - "size": 1790, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_north", - "size": 7483, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_northm", - "size": 1644, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_south", - "size": 7948, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigemarinehelmet/PrestigeMarineHelmet_southm", - "size": 1519, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor", - "size": 12350, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_east", - "size": 19606, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_eastm", - "size": 5221, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_north", - "size": 15565, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_northm", - "size": 3636, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_south", - "size": 23616, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Fat_southm", - "size": 5270, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_east", - "size": 14796, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_eastm", - "size": 4778, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_north", - "size": 12792, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_northm", - "size": 3650, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_south", - "size": 16212, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Female_southm", - "size": 4734, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_east", - "size": 20289, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_eastm", - "size": 5602, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_north", - "size": 16784, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_northm", - "size": 3605, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_south", - "size": 23430, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Hulk_southm", - "size": 5632, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_east", - "size": 15228, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_eastm", - "size": 4797, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_north", - "size": 12595, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_northm", - "size": 3443, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_south", - "size": 16724, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Male_southm", - "size": 4844, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_east", - "size": 12184, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_eastm", - "size": 4709, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_north", - "size": 10019, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_northm", - "size": 3417, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_south", - "size": 13503, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_Thin_southm", - "size": 4575, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconarmor/PrestigeReconArmor_m", - "size": 3536, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet", - "size": 12798, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_east", - "size": 16183, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_eastm", - "size": 4162, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_m", - "size": 3014, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_north", - "size": 14827, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_northm", - "size": 4116, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_south", - "size": 17772, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/prestigereconhelmet/PrestigeReconHelmet_southm", - "size": 4120, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet", - "size": 1166, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_back", - "size": 1446, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_front", - "size": 1336, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/psychicfoilhelmet/psychicfoilhelmet_side", - "size": 1569, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_east", - "size": 9571, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_north", - "size": 7811, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Fat_south", - "size": 12378, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_east", - "size": 7843, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_north", - "size": 6823, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Female_south", - "size": 9149, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_east", - "size": 10434, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_north", - "size": 8006, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Hulk_south", - "size": 12613, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_east", - "size": 7684, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_north", - "size": 6034, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Male_south", - "size": 9050, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_east", - "size": 6296, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_north", - "size": 4539, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmor/ReconArmor_Thin_south", - "size": 6544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet", - "size": 10773, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_east", - "size": 14898, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_north", - "size": 12780, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/reconarmorhelmet/ReconHelmet_south", - "size": 16082, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe", - "size": 11119, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_east", - "size": 18187, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_north", - "size": 19535, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Fat_south", - "size": 20992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_east", - "size": 15771, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_north", - "size": 16080, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Female_south", - "size": 16554, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_east", - "size": 18425, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_north", - "size": 20017, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Hulk_south", - "size": 22100, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_east", - "size": 14954, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_north", - "size": 16455, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Male_south", - "size": 18061, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_east", - "size": 13857, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_north", - "size": 14748, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/robe/Robe_Thin_south", - "size": 15386, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe", - "size": 20789, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_east", - "size": 11341, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_north", - "size": 14462, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Fat_south", - "size": 15569, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_east", - "size": 9992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_north", - "size": 12210, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Female_south", - "size": 12712, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_east", - "size": 12214, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_north", - "size": 16295, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Hulk_south", - "size": 18673, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_east", - "size": 9586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_north", - "size": 11183, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Male_south", - "size": 12744, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_east", - "size": 8665, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_north", - "size": 9434, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/royalrobe/RoyalRobe_Thin_south", - "size": 10675, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet", - "size": 9994, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_east", - "size": 6954, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_eastm", - "size": 1108, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_m", - "size": 1703, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_north", - "size": 6567, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_northm", - "size": 1113, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_south", - "size": 7406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/samuraihelmet/SamuraiHelmet_southm", - "size": 1398, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash", - "size": 8964, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_east", - "size": 11568, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_north", - "size": 12238, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Fat_south", - "size": 12019, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_east", - "size": 9820, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_north", - "size": 11302, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Female_south", - "size": 10930, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_east", - "size": 11466, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_north", - "size": 12434, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Hulk_south", - "size": 12158, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_east", - "size": 10483, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_north", - "size": 11139, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Male_south", - "size": 10929, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_east", - "size": 9429, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_north", - "size": 10868, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/sash/Sash_Thin_south", - "size": 10634, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone", - "size": 6274, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_east", - "size": 11461, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_north", - "size": 11398, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shadecone/Shadecone_south", - "size": 11305, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shieldbelt/shieldbelt", - "size": 1587, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic", - "size": 15544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_east", - "size": 10561, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_north", - "size": 10295, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Fat_south", - "size": 12478, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_east", - "size": 9543, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_north", - "size": 8977, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Female_south", - "size": 10406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_east", - "size": 10992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_north", - "size": 12682, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Hulk_south", - "size": 14861, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_east", - "size": 8491, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_north", - "size": 9102, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Male_south", - "size": 10221, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_east", - "size": 7630, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_north", - "size": 6201, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/ShirtBasic_Thin_south", - "size": 7007, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_back", - "size": 2329, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_front", - "size": 3493, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_fat_side", - "size": 2691, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_back", - "size": 2252, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_front", - "size": 2723, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_female_side", - "size": 2286, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_back", - "size": 2862, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_front", - "size": 3601, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_hulk_side", - "size": 2785, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_back", - "size": 2095, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_front", - "size": 2573, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_male_side", - "size": 1979, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_back", - "size": 1170, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_front", - "size": 1616, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbasic/shirtbasic_thin_side", - "size": 1758, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton", - "size": 21550, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_east", - "size": 11481, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_north", - "size": 12706, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Fat_south", - "size": 16421, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_east", - "size": 10255, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_north", - "size": 10200, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Female_south", - "size": 13935, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_east", - "size": 11689, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_north", - "size": 14872, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Hulk_south", - "size": 19608, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_east", - "size": 9326, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_north", - "size": 10615, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Male_south", - "size": 13594, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_east", - "size": 8041, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_north", - "size": 7116, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/ShirtButton_Thin_south", - "size": 9498, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_back", - "size": 2734, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_front", - "size": 3998, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_fat_side", - "size": 3182, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_back", - "size": 2409, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_front", - "size": 3106, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_female_side", - "size": 2243, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_back", - "size": 3409, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_front", - "size": 4109, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_hulk_side", - "size": 3319, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_back", - "size": 2389, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_front", - "size": 2912, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_male_side", - "size": 2311, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_back", - "size": 1368, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_front", - "size": 1799, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtbutton/shirtbutton_thin_side", - "size": 1897, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle", - "size": 26895, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_east", - "size": 14804, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_north", - "size": 15061, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Fat_south", - "size": 20488, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_east", - "size": 12380, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_north", - "size": 11985, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Female_south", - "size": 15628, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_east", - "size": 16414, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_north", - "size": 18269, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Hulk_south", - "size": 23818, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_east", - "size": 11975, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_north", - "size": 13909, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Male_south", - "size": 16135, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_east", - "size": 9932, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_north", - "size": 7621, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/shirtruffle/ShirtRuffle_Thin_south", - "size": 9935, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet", - "size": 1010, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_back", - "size": 1451, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_front", - "size": 1560, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/simplehelmet/simplehelmet_side", - "size": 1411, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar", - "size": 5784, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_east", - "size": 1121, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_north", - "size": 810, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slavecollar/SlaveCollar_south", - "size": 977, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCap", - "size": 7768, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_east", - "size": 11297, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_north", - "size": 10156, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapA_south", - "size": 10348, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_east", - "size": 10581, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_north", - "size": 10287, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapB_south", - "size": 10780, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_east", - "size": 10430, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_north", - "size": 9194, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/slicecap/SliceCapC_south", - "size": 10095, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/smokepopbelt/smokepopbelt", - "size": 2089, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap", - "size": 7760, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_east", - "size": 13581, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_north", - "size": 16238, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tailcap/Tailcap_south", - "size": 12922, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat", - "size": 7749, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_east", - "size": 11496, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_north", - "size": 10870, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tophat/TopHat_south", - "size": 10274, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown", - "size": 8600, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_east", - "size": 13439, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_north", - "size": 11654, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/torturecrown/TortureCrown_south", - "size": 12586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack", - "size": 7662, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_east", - "size": 16156, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_north", - "size": 13532, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/toxpack/ToxPack_south", - "size": 13895, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala", - "size": 1799, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_back", - "size": 3375, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_front", - "size": 3699, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_fat_side", - "size": 3359, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_back", - "size": 2129, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_front", - "size": 2306, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_female_side", - "size": 2325, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_back", - "size": 2805, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_front", - "size": 2942, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_hulk_side", - "size": 2904, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_back", - "size": 2009, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_front", - "size": 2174, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_male_side", - "size": 2320, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_back", - "size": 1608, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_front", - "size": 1666, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribala/tribala_thin_side", - "size": 1912, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress", - "size": 6802, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_east", - "size": 9826, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_north", - "size": 8970, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tribalheaddress/TribalHeaddress_south", - "size": 9093, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque", - "size": 1126, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_back", - "size": 1970, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_front", - "size": 1646, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/tuque/tuque_side", - "size": 2191, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/various/pants_onmap", - "size": 2534, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil", - "size": 6887, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_east", - "size": 6662, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_north", - "size": 8260, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/veil/Veil_south", - "size": 8510, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate", - "size": 1546, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_back", - "size": 2077, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_front", - "size": 2155, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_fat_side", - "size": 2648, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_back", - "size": 1376, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_front", - "size": 1424, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_female_side", - "size": 1532, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_back", - "size": 2462, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_front", - "size": 2323, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_hulk_side", - "size": 2803, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_back", - "size": 1720, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_front", - "size": 1741, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_male_side", - "size": 1952, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_back", - "size": 1317, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_front", - "size": 1277, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestplate/vestplate_thin_side", - "size": 1325, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal", - "size": 18369, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_east", - "size": 9152, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_north", - "size": 10779, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Fat_south", - "size": 14725, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_east", - "size": 8361, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_north", - "size": 9197, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Female_south", - "size": 11170, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_east", - "size": 9426, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_north", - "size": 13025, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Hulk_south", - "size": 14653, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_east", - "size": 7140, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_north", - "size": 9815, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Male_south", - "size": 9957, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_east", - "size": 6659, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_north", - "size": 6402, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/vestroyal/VestRoyal_Thin_south", - "size": 6342, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMask", - "size": 6433, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_east", - "size": 9434, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_north", - "size": 12422, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskA_south", - "size": 10398, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_east", - "size": 9415, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_north", - "size": 12322, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskB_south", - "size": 10292, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_east", - "size": 9115, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_north", - "size": 11814, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/visagemask/VisageMaskC_south", - "size": 9714, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask", - "size": 6048, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_east", - "size": 7646, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_north", - "size": 8327, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparel/warmask/WarMask_south", - "size": 8349, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore", - "size": 13425, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_east", - "size": 21009, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_north", - "size": 18186, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Fat_south", - "size": 24639, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_east", - "size": 18372, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_north", - "size": 17011, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Female_south", - "size": 21239, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_east", - "size": 22918, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_north", - "size": 19811, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Hulk_south", - "size": 25038, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_east", - "size": 17591, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_north", - "size": 16448, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Male_south", - "size": 22721, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_east", - "size": 17055, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_north", - "size": 15902, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/dusterspikecore/DusterSpikecore_Thin_south", - "size": 20122, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore", - "size": 13373, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_east", - "size": 19480, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_north", - "size": 19703, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Fat_south", - "size": 27073, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_east", - "size": 16148, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_north", - "size": 16595, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Female_south", - "size": 22254, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_east", - "size": 18916, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_north", - "size": 19042, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Hulk_south", - "size": 27063, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_east", - "size": 16366, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_north", - "size": 17055, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Male_south", - "size": 22999, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_east", - "size": 16168, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_north", - "size": 15171, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/flakjacketspikecore/FlakJacketSpikecore_Thin_south", - "size": 19912, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu", - "size": 6738, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_east", - "size": 12448, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_north", - "size": 14082, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedhindu/HelmetAdvancedHindu_south", - "size": 12919, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic", - "size": 9720, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_east", - "size": 14627, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_north", - "size": 14586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedrustic/HelmetAdvancedRustic_south", - "size": 15277, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore", - "size": 10775, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_east", - "size": 14570, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_north", - "size": 15216, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetadvancedspikecore/HelmetAdvancedSpikecore_south", - "size": 15562, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist", - "size": 12354, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_east", - "size": 18971, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_north", - "size": 16441, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractanimalist/HelmetCataphractAnimalist_south", - "size": 19511, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid", - "size": 10497, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_east", - "size": 16163, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_north", - "size": 14187, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphractmorbid/HelmetCataphractMorbid_south", - "size": 17047, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic", - "size": 10847, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_east", - "size": 17164, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_north", - "size": 17205, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetcataphracttotemic/HelmetCataphractTotemic_south", - "size": 19510, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist", - "size": 12461, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_east", - "size": 17781, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_north", - "size": 19661, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarineanimalist/HelmetMarineAnimalist_south", - "size": 18811, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid", - "size": 8683, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_east", - "size": 15664, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_north", - "size": 12604, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinemorbid/HelmetMarineMorbid_south", - "size": 14921, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic", - "size": 11036, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_east", - "size": 22115, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_north", - "size": 20540, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetmarinetotemic/HelmetMarineTotemic_south", - "size": 21015, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist", - "size": 11327, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_east", - "size": 16182, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_north", - "size": 18427, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconanimalist/HelmetReconAnimalist_south", - "size": 20008, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid", - "size": 8252, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_east", - "size": 14977, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_north", - "size": 12195, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetreconmorbid/HelmetReconMorbid_south", - "size": 13892, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic", - "size": 8254, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_east", - "size": 14974, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_north", - "size": 13725, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetrecontotemic/HelmetReconTotemic_south", - "size": 13628, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu", - "size": 5284, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_east", - "size": 10818, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_north", - "size": 10881, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplehindu/HelmetSimpleHindu_south", - "size": 10241, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic", - "size": 8473, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_east", - "size": 13500, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_north", - "size": 12867, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplerustic/HelmetSimpleRustic_south", - "size": 14175, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore", - "size": 8628, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_east", - "size": 14080, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_north", - "size": 13090, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/helmetsimplespikecore/HelmetSimpleSpikecore_south", - "size": 13880, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore", - "size": 12229, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_east", - "size": 20971, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_north", - "size": 20735, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Fat_south", - "size": 21982, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_east", - "size": 16076, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_north", - "size": 18244, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Female_south", - "size": 19208, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_east", - "size": 20208, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_north", - "size": 20850, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Hulk_south", - "size": 23346, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_east", - "size": 16918, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_north", - "size": 17998, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Male_south", - "size": 18966, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_east", - "size": 14540, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_north", - "size": 15116, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/jacketspikecore/JacketSpikecore_Thin_south", - "size": 16201, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore", - "size": 12304, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_east", - "size": 22337, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_north", - "size": 19690, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Fat_south", - "size": 24263, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_east", - "size": 16994, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_north", - "size": 18003, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Female_south", - "size": 20347, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_east", - "size": 22063, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_north", - "size": 21490, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Hulk_south", - "size": 27394, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_east", - "size": 17675, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_north", - "size": 17951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Male_south", - "size": 21601, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_east", - "size": 16553, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_north", - "size": 16143, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/parkaspikecore/ParkaSpikecore_Thin_south", - "size": 18192, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist", - "size": 11754, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_east", - "size": 16298, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_north", - "size": 19785, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/apparelstyles/warmaskanimalist/WarMaskAnimalist_south", - "size": 19781, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_east", - "size": 4913, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardAnchor_south", - "size": 6079, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_east", - "size": 11454, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBalin_south", - "size": 13234, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_east", - "size": 9449, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBifur_south", - "size": 11201, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_east", - "size": 8872, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardBoxed_south", - "size": 8972, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_east", - "size": 4951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCircle_south", - "size": 5807, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_east", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCleanShaven_south", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_east", - "size": 9360, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurly_south", - "size": 10445, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_east", - "size": 6481, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardCurtain_south", - "size": 9140, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_east", - "size": 10624, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDori_south", - "size": 12697, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_east", - "size": 7737, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDucktail_south", - "size": 9343, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_east", - "size": 9441, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardDwalin_south", - "size": 11257, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_east", - "size": 9430, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFork_south", - "size": 11104, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_east", - "size": 6142, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFrench_south", - "size": 6094, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_east", - "size": 7530, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFull_south", - "size": 8780, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_east", - "size": 10712, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinCurlyMoustache_south", - "size": 11736, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinKnots_east", - "size": 13466, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinKnots_south", - "size": 13601, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMegabraid_east", - "size": 12990, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMegabraid_south", - "size": 12066, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMonkey_east", - "size": 12659, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMonkey_south", - "size": 13341, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMoustache_east", - "size": 9614, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinMoustache_south", - "size": 10695, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinScruffy_east", - "size": 12451, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinScruffy_south", - "size": 13333, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSenile_east", - "size": 13046, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSenile_south", - "size": 13350, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideChops_east", - "size": 10851, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideChops_south", - "size": 13864, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideTufts_east", - "size": 10556, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinSideTufts_south", - "size": 11670, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinStrongChops_east", - "size": 11871, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardFurskinStrongChops_south", - "size": 13032, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_east", - "size": 5327, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardGoatee_south", - "size": 5190, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_east", - "size": 6342, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardImperial_south", - "size": 7340, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_east", - "size": 7387, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardKhal_south", - "size": 7951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_east", - "size": 7941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLincoln_south", - "size": 9030, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_east", - "size": 8532, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardLongDutch_south", - "size": 11620, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_east", - "size": 4360, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMachete_south", - "size": 5693, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_east", - "size": 4074, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMoustache_south", - "size": 4266, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_east", - "size": 7596, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardMuttonChops_south", - "size": 8666, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_east", - "size": 11543, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardNori_south", - "size": 15569, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_east", - "size": 7721, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardOldDutch_south", - "size": 10183, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_east", - "size": 8742, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSeer_south", - "size": 10904, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_east", - "size": 5698, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSideWhiskers_south", - "size": 6906, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_east", - "size": 3862, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardSoulPatch_south", - "size": 3916, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_east", - "size": 4703, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardStubble_south", - "size": 5147, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_east", - "size": 10042, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardUrist_south", - "size": 10463, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_east", - "size": 9412, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardVanDyke_south", - "size": 11011, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_east", - "size": 12087, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_north", - "size": 2580, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/BeardWizard_south", - "size": 13986, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/beards/Slicked_north", - "size": 2586, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_east", - "size": 18134, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_north", - "size": 21612, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Fat_south", - "size": 17266, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_east", - "size": 15614, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_north", - "size": 17906, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Female_south", - "size": 16359, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_east", - "size": 18963, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_north", - "size": 22874, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Hulk_south", - "size": 19190, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_east", - "size": 15154, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_north", - "size": 18520, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Male_south", - "size": 14663, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_east", - "size": 13742, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_north", - "size": 14355, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/FurCovered_Thin_south", - "size": 12720, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_east", - "size": 5079, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_north", - "size": 5044, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_Child_south", - "size": 4948, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_east", - "size": 5709, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_north", - "size": 5011, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/Naked_FurChild_south", - "size": 5469, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_east", - "size": 5339, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_north", - "size": 5698, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/dessicated/Dessicated_Child_south", - "size": 5472, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_back", - "size": 2958, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_front", - "size": 2766, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_fat_side", - "size": 2674, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_back", - "size": 2223, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_front", - "size": 2318, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_female_side", - "size": 2201, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_back", - "size": 3088, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_front", - "size": 3142, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_hulk_side", - "size": 2786, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_back", - "size": 2399, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_front", - "size": 2174, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_male_side", - "size": 1860, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_back", - "size": 1466, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_front", - "size": 1348, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodies/naked_thin_side", - "size": 1740, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_east", - "size": 16344, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_north", - "size": 15344, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/furrytail/FurryTail_south", - "size": 16464, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_east", - "size": 17020, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_north", - "size": 11152, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/bodyattachments/smoothtail/SmoothTail_south", - "size": 10924, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Ponytails_south", - "size": 5524, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_east", - "size": 3218, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_north", - "size": 4142, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Primal_south", - "size": 1276, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_east", - "size": 2588, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_north", - "size": 2908, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Randy_south", - "size": 2813, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_east", - "size": 2444, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_north", - "size": 2156, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Recruit_south", - "size": 2712, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_east", - "size": 2485, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_north", - "size": 3374, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Revolt_south", - "size": 2356, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_east", - "size": 4269, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_north", - "size": 3924, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rockstar_south", - "size": 3438, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_east", - "size": 2203, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_north", - "size": 1758, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Rookie_south", - "size": 1501, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_east", - "size": 3210, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_north", - "size": 3032, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Savage_south", - "size": 2230, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_east", - "size": 2113, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_north", - "size": 2755, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Scrapper_south", - "size": 3105, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_east", - "size": 4145, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_north", - "size": 4669, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Snazzy_south", - "size": 4880, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_east", - "size": 4175, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_north", - "size": 4754, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Sticky_south", - "size": 4136, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_east", - "size": 2407, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_north", - "size": 2440, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCeremonial_south", - "size": 1504, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_east", - "size": 1541, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_north", - "size": 1815, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallCircular_south", - "size": 1358, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_east", - "size": 1287, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_north", - "size": 1474, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallRectangular_south", - "size": 1083, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_east", - "size": 1209, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_north", - "size": 1350, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/ThrallSpotted_south", - "size": 1164, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_east", - "size": 4019, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_north", - "size": 4452, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/Warden_south", - "size": 3197, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/afro_back", - "size": 1971, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/afro_front", - "size": 1743, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/afro_side", - "size": 1743, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/bob_back", - "size": 1918, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/bob_front", - "size": 2010, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/bob_side", - "size": 2092, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_back", - "size": 2860, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_front", - "size": 2237, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/braidbun_side", - "size": 3206, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_back", - "size": 1907, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_front", - "size": 1824, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/burgundy_side", - "size": 1924, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/curly_back", - "size": 3539, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/curly_front", - "size": 3744, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/curly_side", - "size": 3403, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_back", - "size": 2675, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_front", - "size": 2587, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/firestarter_side", - "size": 1841, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_back", - "size": 2484, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_front", - "size": 2546, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/flowy_side", - "size": 2413, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_back", - "size": 2701, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_front", - "size": 2357, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/gaston_side", - "size": 2615, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_back", - "size": 3113, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_front", - "size": 2342, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/greasyswoop_side", - "size": 2689, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/long_back", - "size": 2213, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/long_front", - "size": 2389, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/long_side", - "size": 2326, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mess_back", - "size": 3279, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mess_front", - "size": 3265, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mess_side", - "size": 2940, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_back", - "size": 860, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_front", - "size": 835, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mohawk_side", - "size": 1421, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mop_back", - "size": 2119, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mop_front", - "size": 1824, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/mop_side", - "size": 2052, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_back", - "size": 2474, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_front", - "size": 2520, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/pigtails_side", - "size": 2009, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/princess_back", - "size": 4628, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/princess_front", - "size": 3897, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/princess_side", - "size": 3938, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_east", - "size": 4145, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_north", - "size": 4444, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Anne_south", - "size": 3673, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_east", - "size": 3372, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_north", - "size": 4179, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Artist_south", - "size": 4191, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_east", - "size": 4130, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_north", - "size": 4371, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Elisabeth_south", - "size": 3209, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_east", - "size": 3672, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_north", - "size": 5191, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Henry_south", - "size": 4159, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_east", - "size": 3862, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_north", - "size": 4740, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Jane_south", - "size": 3199, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_east", - "size": 3172, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_north", - "size": 3979, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Mary_south", - "size": 3518, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_east", - "size": 2922, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_north", - "size": 3927, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Richard_south", - "size": 3464, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_east", - "size": 3550, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_north", - "size": 4224, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Stephen_south", - "size": 2997, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_east", - "size": 4257, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_north", - "size": 4735, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/Victoria_south", - "size": 3951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_east", - "size": 3496, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_north", - "size": 4609, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/royalty/William_south", - "size": 3127, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/hairs/scat_back", - "size": 2099, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/scat_front", - "size": 2461, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/scat_side", - "size": 1842, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_back", - "size": 1654, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_front", - "size": 1307, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/scorpiontail_side", - "size": 2040, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_back", - "size": 3650, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_front", - "size": 3468, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/senorita_side", - "size": 3836, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_back", - "size": 549, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_front", - "size": 520, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/shaved_side", - "size": 630, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_back", - "size": 760, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_front", - "size": 760, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/spikes_side", - "size": 2515, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_back", - "size": 2472, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_front", - "size": 2074, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/topdog_side", - "size": 2609, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_back", - "size": 3565, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_front", - "size": 3050, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/troubadour_side", - "size": 3731, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_back", - "size": 841, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_front", - "size": 876, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/tuft_side", - "size": 828, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_back", - "size": 2040, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_front", - "size": 2362, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/hairs/wavy_side", - "size": 1938, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_east", - "size": 9032, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_north", - "size": 8694, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/catears/CatEars_south", - "size": 10357, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_east", - "size": 7910, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_north", - "size": 7336, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/centerhorn/CenterHorn_south", - "size": 7915, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_east", - "size": 7524, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesA_south", - "size": 8356, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_east", - "size": 7568, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesB_south", - "size": 7628, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_east", - "size": 7465, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/facialridges/FacialRidgesC_south", - "size": 8171, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_east", - "size": 9668, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_north", - "size": 10733, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/floppyears/FloppyEars_south", - "size": 10821, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_east", - "size": 7363, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/heavybrow/HeavyBrow_south", - "size": 8051, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_east", - "size": 7379, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_north", - "size": 8230, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/minihorns/MiniHorns_south", - "size": 8218, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_east", - "size": 8689, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_north", - "size": 10402, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pigears/PigEars_south", - "size": 10906, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pignose/PigNose_east", - "size": 7469, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pignose/PigNose_south", - "size": 8406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_east", - "size": 9125, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_north", - "size": 9970, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/headattachments/pointedears/PointedEars_south", - "size": 10062, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_east", - "size": 13341, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_north", - "size": 13949, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average1_Normal_south", - "size": 14332, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_east", - "size": 13550, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_north", - "size": 13941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average2_Normal_south", - "size": 13976, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_east", - "size": 13217, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_north", - "size": 13806, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Average3_Normal_south", - "size": 14295, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_east", - "size": 13974, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_north", - "size": 12755, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Gaunt_Normal_south", - "size": 15039, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_east", - "size": 13122, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_north", - "size": 13420, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow1_Normal_south", - "size": 13897, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_east", - "size": 12936, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_north", - "size": 13672, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow2_Normal_south", - "size": 13430, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_east", - "size": 12919, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_north", - "size": 13300, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Narrow3_Normal_south", - "size": 13799, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_east", - "size": 13475, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_north", - "size": 13914, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide1_Normal_south", - "size": 14242, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_east", - "size": 13222, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_north", - "size": 14008, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide2_Normal_south", - "size": 13684, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_east", - "size": 13320, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_north", - "size": 13731, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/FurCovered_Wide3_Normal_south", - "size": 14073, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_back", - "size": 1682, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_front", - "size": 1873, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_normal_side", - "size": 1756, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_back", - "size": 1732, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_front", - "size": 1864, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_pointy_side", - "size": 1694, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_back", - "size": 1775, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_front", - "size": 1953, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_average_wide_side", - "size": 1739, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_back", - "size": 1536, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_front", - "size": 1600, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_normal_side", - "size": 1593, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_back", - "size": 1579, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_front", - "size": 1691, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_pointy_side", - "size": 1619, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_back", - "size": 1572, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_front", - "size": 1711, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/female/female_narrow_wide_side", - "size": 1639, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_back", - "size": 1709, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_front", - "size": 1977, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_normal_side", - "size": 1713, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_back", - "size": 1682, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_front", - "size": 1945, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_pointy_side", - "size": 1666, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_back", - "size": 1661, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_front", - "size": 1974, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_average_wide_side", - "size": 1689, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_back", - "size": 1665, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_front", - "size": 1774, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_normal_side", - "size": 1709, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_back", - "size": 1653, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_front", - "size": 1734, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_pointy_side", - "size": 1694, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_back", - "size": 1681, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_front", - "size": 1786, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/male/male_narrow_wide_side", - "size": 1646, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_back", - "size": 2333, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_front", - "size": 2370, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_skull_side", - "size": 2294, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_back", - "size": 675, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_front", - "size": 675, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/heads/none_average_stump_side", - "size": 890, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_back", - "size": 3673, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_front", - "size": 3673, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/humanoiddessicated_side", - "size": 2422, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_east", - "size": 8544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_north", - "size": 7576, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_buttons/TattooButtons_south", - "size": 8422, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_east", - "size": 9721, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_north", - "size": 7925, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_cross/TattooCross_south", - "size": 7925, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_east", - "size": 7075, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_north", - "size": 7093, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_heart/Body_Heart_south", - "size": 7126, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_insect/TattooInsect_east", - "size": 7428, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_insect/TattooInsect_south", - "size": 7784, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_east", - "size": 8370, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_north", - "size": 9936, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_jester/TattooJester_south", - "size": 10227, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_east", - "size": 7240, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_north", - "size": 7290, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_moon/TattooMoon_south", - "size": 7249, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_east", - "size": 7444, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_north", - "size": 6980, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_power/TattooPower_south", - "size": 7475, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_east", - "size": 11138, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_north", - "size": 11234, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_rings/TattooRings_south", - "size": 11226, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_east", - "size": 7671, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_north", - "size": 7649, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_royal/TattooRoyal_south", - "size": 7646, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_east", - "size": 8449, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_north", - "size": 8147, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_scar/TattooScar_south", - "size": 8157, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_east", - "size": 8572, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_north", - "size": 9318, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skeleton/TattooSkeleton_south", - "size": 9415, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_east", - "size": 8740, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_north", - "size": 8594, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_skull/Body_Skull_south", - "size": 9705, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_east", - "size": 8544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_north", - "size": 7439, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_spike/TattooSpike_south", - "size": 7638, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_east", - "size": 10816, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_north", - "size": 9706, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_sun/TattooSun_south", - "size": 9620, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_east", - "size": 9822, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_north", - "size": 10354, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_tiger/Body_Tiger_south", - "size": 9878, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_wings/TattooWings_east", - "size": 7861, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/body_wings/TattooWings_north", - "size": 7972, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_east", - "size": 7174, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_cobweb/FaceTattooCobweb_south", - "size": 7380, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_east", - "size": 9097, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_north", - "size": 9000, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_double/FaceTattooDouble_south", - "size": 9018, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_east", - "size": 8011, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_north", - "size": 7992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_eclipse/FaceTattooEclipse_south", - "size": 7992, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_east", - "size": 7046, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_headshot/FaceTattooHeadshot_south", - "size": 6926, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_east", - "size": 8482, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_north", - "size": 7061, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_line/FaceTattooLine_south", - "size": 6728, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_east", - "size": 6907, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_north", - "size": 6931, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_love/FaceTattooLove_south", - "size": 6954, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_east", - "size": 6933, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_oracle/FaceTattooOracle_south", - "size": 6983, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_east", - "size": 7339, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_pantheon/FaceTattooPantheon_south", - "size": 7355, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_east", - "size": 7360, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_spider/FaceTattooSpider_south", - "size": 7844, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_east", - "size": 7493, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_north", - "size": 7155, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_stars/FaceTattooStars_south", - "size": 7259, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tear/Face_Tear_east", - "size": 6721, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tear/Face_Tear_south", - "size": 6692, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_east", - "size": 8189, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_north", - "size": 8188, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_tiger/Face_Tiger_south", - "size": 8248, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_east", - "size": 6783, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_warpaint/FaceTattooWarpaint_south", - "size": 7013, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_east", - "size": 7002, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/tattoos/face_worried/FaceTattooWorried_south", - "size": 7382, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/humanlike/ui/iconhuman", - "size": 2456, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_east", - "size": 87743, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_north", - "size": 70573, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ApocritonAncient_south", - "size": 100648, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Apocriton_east", - "size": 80614, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Apocriton_north", - "size": 65488, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Apocriton_south", - "size": 92276, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_east", - "size": 42221, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_north", - "size": 36389, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurnerClean_south", - "size": 44887, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_east", - "size": 43374, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_north", - "size": 32645, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeBurner_south", - "size": 45864, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_east", - "size": 36298, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_north", - "size": 25544, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeClean_south", - "size": 37393, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_east", - "size": 39174, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_north", - "size": 26677, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunnerClean_south", - "size": 39833, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_east", - "size": 40961, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_north", - "size": 28951, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CentipedeGunner_south", - "size": 40963, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centipede_east", - "size": 39131, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centipede_north", - "size": 28452, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centipede_south", - "size": 39343, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_east", - "size": 47668, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_north", - "size": 34067, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/CenturionAncient_south", - "size": 44431, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centurion_east", - "size": 42956, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centurion_north", - "size": 27906, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Centurion_south", - "size": 41086, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_east", - "size": 100248, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_north", - "size": 114458, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/DiabolusAncient_south", - "size": 85553, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Diabolus_east", - "size": 86213, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Diabolus_north", - "size": 96847, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Diabolus_south", - "size": 76717, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/HalfGestatedMechLarge", - "size": 26387, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/HalfGestatedMechSmall", - "size": 12919, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LancerClean_east", - "size": 27471, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LancerClean_north", - "size": 22531, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LancerClean_south", - "size": 28845, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Lancer_east", - "size": 32098, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Lancer_north", - "size": 27181, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Lancer_south", - "size": 36500, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_east", - "size": 34883, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_north", - "size": 36205, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/LegionaryAncient_south", - "size": 43821, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Legionary_east", - "size": 28389, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Legionary_north", - "size": 30607, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Legionary_south", - "size": 34747, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_east", - "size": 26911, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_north", - "size": 22531, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ParamedicAncient_south", - "size": 24968, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Paramedic_east", - "size": 25014, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Paramedic_north", - "size": 19904, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Paramedic_south", - "size": 22835, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_east", - "size": 30078, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_north", - "size": 26596, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/PikemanClean_south", - "size": 36971, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Pikeman_east", - "size": 24587, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Pikeman_north", - "size": 22681, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Pikeman_south", - "size": 30072, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_east", - "size": 36941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_north", - "size": 30026, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScorcherAncient_south", - "size": 37198, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scorcher_east", - "size": 31318, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scorcher_north", - "size": 25869, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scorcher_south", - "size": 31652, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_east", - "size": 32081, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_north", - "size": 24097, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/ScytherClean_south", - "size": 26368, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scyther_east", - "size": 35966, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scyther_north", - "size": 27762, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Scyther_south", - "size": 28595, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_east", - "size": 22374, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_north", - "size": 22013, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TermiteClean_south", - "size": 25226, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Termite_east", - "size": 24104, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Termite_north", - "size": 23170, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Termite_south", - "size": 24597, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_east", - "size": 29674, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_north", - "size": 29986, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TesseronAncient_south", - "size": 30250, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tesseron_east", - "size": 25953, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tesseron_north", - "size": 24921, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tesseron_south", - "size": 25964, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_east", - "size": 45447, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_north", - "size": 44500, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/TunnelerAncient_south", - "size": 52062, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tunneler_east", - "size": 37439, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tunneler_north", - "size": 33958, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Tunneler_south", - "size": 40813, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_east", - "size": 128349, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_north", - "size": 116110, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/WarqueenAncient_south", - "size": 91503, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Warqueen_east", - "size": 105683, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Warqueen_north", - "size": 93841, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/Warqueen_south", - "size": 80537, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_east", - "size": 21661, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_north", - "size": 28961, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeBurner_south", - "size": 22030, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_east", - "size": 21570, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_north", - "size": 21705, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/CentipedeGunner_south", - "size": 21465, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_east", - "size": 24651, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_north", - "size": 26289, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/MechWarqueen_south", - "size": 23221, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_east", - "size": 20138, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_north", - "size": 17027, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Apocriton_south", - "size": 21909, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_east", - "size": 9406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_north", - "size": 8918, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Beamstrider_south", - "size": 9257, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_east", - "size": 22146, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_north", - "size": 22638, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centipede_south", - "size": 19502, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_east", - "size": 9941, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_north", - "size": 9644, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Centurion_south", - "size": 10736, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_east", - "size": 23900, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_north", - "size": 21514, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Diablo_south", - "size": 24431, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_east", - "size": 9419, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_north", - "size": 8175, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Lancer_south", - "size": 9445, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_east", - "size": 9463, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_north", - "size": 9600, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Legionary_south", - "size": 10390, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_east", - "size": 10373, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_north", - "size": 10702, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paladin_south", - "size": 10126, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_east", - "size": 9206, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_north", - "size": 8218, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Paramedic_south", - "size": 8486, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_east", - "size": 9406, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_north", - "size": 9784, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Pikeman_south", - "size": 10103, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_east", - "size": 9343, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_north", - "size": 8427, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scorcher_south", - "size": 8774, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_east", - "size": 9577, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_north", - "size": 8090, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/allegianceoverlays/Mech_Scyther_south", - "size": 9774, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/apparel/HeavyPersonalShield", - "size": 9113, - "modified": 638886166560000000 - }, - { - "key": "things/pawn/mechanoid/centipede_back", - "size": 8566, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/centipede_front", - "size": 8396, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/centipede_side", - "size": 8319, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/scyther_back", - "size": 1583, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/scyther_front", - "size": 1561, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/mechanoid/scyther_side", - "size": 3272, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/wounda", - "size": 1630, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundb", - "size": 1327, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundc", - "size": 1844, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundflesha", - "size": 2292, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundfleshb", - "size": 1812, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundfleshc", - "size": 1893, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundmecha", - "size": 2167, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundmechb", - "size": 1771, - "modified": 636301600580000000 - }, - { - "key": "things/pawn/wounds/woundmechc", - "size": 2009, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.0.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.0.png deleted file mode 100644 index 4f34611..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.1.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.1.png deleted file mode 100644 index 4177b23..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.10.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.10.png deleted file mode 100644 index 2bda635..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.10.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.11.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.11.png deleted file mode 100644 index 6504136..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.11.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.12.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.12.png deleted file mode 100644 index 8f56157..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.12.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.13.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.13.png deleted file mode 100644 index 447f323..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.13.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.14.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.14.png deleted file mode 100644 index 0acdb75..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.14.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.15.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.15.png deleted file mode 100644 index 2c51c28..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.15.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.16.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.16.png deleted file mode 100644 index bf7fec9..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.16.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.17.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.17.png deleted file mode 100644 index 7b81079..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.17.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.18.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.18.png deleted file mode 100644 index 10f76f5..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.18.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.19.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.19.png deleted file mode 100644 index 684e7a3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.19.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.2.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.2.png deleted file mode 100644 index f2a8973..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.2.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.20.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.20.png deleted file mode 100644 index 38bac03..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.20.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.21.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.21.png deleted file mode 100644 index bb97c36..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.21.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.22.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.22.png deleted file mode 100644 index 24aed3e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.22.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.23.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.23.png deleted file mode 100644 index 4797c28..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.23.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.24.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.24.png deleted file mode 100644 index 9a7da31..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.24.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.25.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.25.png deleted file mode 100644 index 4693842..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.25.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.26.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.26.png deleted file mode 100644 index 048b833..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.26.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.27.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.27.png deleted file mode 100644 index 8375065..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.27.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.28.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.28.png deleted file mode 100644 index fe94f2a..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.28.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.29.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.29.png deleted file mode 100644 index 1b1a7ce..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.29.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.3.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.3.png deleted file mode 100644 index f224bf7..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.3.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.30.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.30.png deleted file mode 100644 index ea09c5e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.30.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.31.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.31.png deleted file mode 100644 index 569f58c..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.31.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.32.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.32.png deleted file mode 100644 index fe6d70e..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.32.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.33.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.33.png deleted file mode 100644 index bab140c..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.33.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.34.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.34.png deleted file mode 100644 index 0a8d0d3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.34.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.35.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.35.png deleted file mode 100644 index c1e403a..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.35.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.36.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.36.png deleted file mode 100644 index 017ee38..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.36.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.37.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.37.png deleted file mode 100644 index 39283c3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.37.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.38.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.38.png deleted file mode 100644 index 4912fd3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.38.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.4.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.4.png deleted file mode 100644 index d53b826..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.4.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.5.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.5.png deleted file mode 100644 index 09ee729..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.5.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.6.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.6.png deleted file mode 100644 index c7501e8..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.6.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.7.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.7.png deleted file mode 100644 index 318fe7a..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.7.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.8.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.8.png deleted file mode 100644 index d126342..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.8.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.pawn.atlas.9.png b/src/LittleSim/Assets/Atlases/things.pawn.atlas.9.png deleted file mode 100644 index a3da7c0..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.pawn.atlas.9.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.plant.atlas b/src/LittleSim/Assets/Atlases/things.plant.atlas deleted file mode 100644 index 9d3e7ec..0000000 --- a/src/LittleSim/Assets/Atlases/things.plant.atlas +++ /dev/null @@ -1,2346 +0,0 @@ -{ - "version": 2, - "name": "things.plant", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.plant.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.plant.atlas.1.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.plant.atlas.2.png", - "width": 2048, - "height": 2048 - }, - { - "file": "things.plant.atlas.3.png", - "width": 2048, - "height": 512 - } - ], - "regions": [ - { - "key": "things/plant/agarilux/AgariluxA", - "page": 2, - "x": 1292, - "y": 1292, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/agarilux/AgariluxB", - "page": 2, - "x": 1422, - "y": 1292, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/agave/AgaveA", - "page": 2, - "x": 1552, - "y": 1292, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/agave/AgaveB", - "page": 2, - "x": 1682, - "y": 1292, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/alocasia/AlocasiaA", - "page": 1, - "x": 1284, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/alocasia/AlocasiaB", - "page": 1, - "x": 1542, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/ambrosia/Ambrosia", - "page": 2, - "x": 1812, - "y": 1292, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/ambrosia_leafless/ambrosia_leafless", - "page": 3, - "x": 1822, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/ambrosiaimmature/ambrosia", - "page": 3, - "x": 1888, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/astragalus/astragalusa", - "page": 3, - "x": 1954, - "y": 262, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/astragalus/astragalusb", - "page": 3, - "x": 2, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/astragalus/astragalusc", - "page": 3, - "x": 68, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/berryplant/BerryPlant", - "page": 2, - "x": 2, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/berryplant/BerryPlantA", - "page": 2, - "x": 132, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeA", - "page": 2, - "x": 262, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeB", - "page": 2, - "x": 392, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeC", - "page": 2, - "x": 522, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/brambles/BramblesA", - "page": 2, - "x": 652, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/brambles/BramblesB", - "page": 2, - "x": 782, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/burnedtree/burnedtreea", - "page": 2, - "x": 912, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/burnedtree/burnedtreeb", - "page": 2, - "x": 1042, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bush/BushA", - "page": 2, - "x": 1172, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bush/BushB", - "page": 2, - "x": 1302, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bush/BushC", - "page": 2, - "x": 1432, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/bush/bush", - "page": 3, - "x": 134, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/bush_leafless/bush_leafless", - "page": 3, - "x": 200, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/chokevine/ChokevineA", - "page": 1, - "x": 2, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/chokevine/ChokevineB", - "page": 1, - "x": 260, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/chokevine/ChokevineC", - "page": 1, - "x": 518, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/chokevine/ChokevineD", - "page": 1, - "x": 776, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/cornimmature/cornplanta", - "page": 3, - "x": 266, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/cornplant/CornPlanA", - "page": 2, - "x": 1562, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/cornplant/CornPlantA", - "page": 2, - "x": 1692, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/cornplant/CornPlantB", - "page": 2, - "x": 1822, - "y": 1550, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/cottonimmature/cottonplant", - "page": 3, - "x": 332, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/cottonplant/cottonplant", - "page": 3, - "x": 398, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/dandelion/Dandelion", - "page": 2, - "x": 2, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/dandelion/DandelionB", - "page": 2, - "x": 132, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/dandelion/DandelionC", - "page": 2, - "x": 262, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/daylily/DaylilyA", - "page": 2, - "x": 392, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/daylily/DaylilyB", - "page": 2, - "x": 522, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/daylily/daylily", - "page": 3, - "x": 464, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/devilstrand/DevilstrandA", - "page": 2, - "x": 652, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/devilstrand/DevilstrandB", - "page": 2, - "x": 782, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/devilstrand/devilstrand", - "page": 3, - "x": 530, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/fibercorn/FibercornA", - "page": 2, - "x": 912, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/fibercorn/FibercornB", - "page": 2, - "x": 1042, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/fibercorn/FibercornC", - "page": 2, - "x": 1172, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossA", - "page": 2, - "x": 1302, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossB", - "page": 2, - "x": 1432, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossC", - "page": 2, - "x": 1562, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodA", - "page": 2, - "x": 1692, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodB", - "page": 2, - "x": 1822, - "y": 1680, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodC", - "page": 2, - "x": 2, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/gauranlentree/GauranlenTreeA", - "page": 1, - "x": 1034, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/gauranlentree/GauranlenTreeB", - "page": 1, - "x": 1292, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/glowstool/GlowstoolA", - "page": 2, - "x": 132, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/glowstool/GlowstoolB", - "page": 2, - "x": 262, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/grass/grassa", - "page": 3, - "x": 596, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/grass_leafless/grassa_leafless", - "page": 3, - "x": 662, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/haygrass/HaygrassA", - "page": 2, - "x": 392, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/healroot/HealrootA", - "page": 2, - "x": 522, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/healroot/HealrootB", - "page": 2, - "x": 652, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/healroot/healroot", - "page": 3, - "x": 728, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/hopsplant/hopsplanta", - "page": 3, - "x": 794, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/immature/ambrosia_immature/Ambrosia", - "page": 2, - "x": 782, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/berryplant_immature/BerryPlant", - "page": 2, - "x": 912, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/berryplant_immature/BerryPlantA", - "page": 2, - "x": 1042, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/cornplant_immature/CornPlantA", - "page": 2, - "x": 1172, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/riceplant_immature/RicePlantA", - "page": 2, - "x": 1302, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/toxipotato_immature/ToxipotatoA", - "page": 2, - "x": 1432, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/immature/treecocoa_immature/TreeCocoaA", - "page": 1, - "x": 1550, - "y": 1284, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/agave_leafless/AgaveA_Leafless", - "page": 2, - "x": 1562, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/agave_leafless/AgaveB_Leafless", - "page": 2, - "x": 1692, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless", - "page": 2, - "x": 1822, - "y": 1810, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/berryplant_leafless/BerryBushLeaflessA", - "page": 3, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/brambles_leafless/Brambles_LeaflessA", - "page": 3, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/brambles_leafless/Brambles_LeaflessB", - "page": 3, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessA", - "page": 3, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessB", - "page": 3, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessC", - "page": 3, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA", - "page": 1, - "x": 2, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB", - "page": 1, - "x": 260, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC", - "page": 1, - "x": 518, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD", - "page": 1, - "x": 776, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessA", - "page": 3, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessB", - "page": 3, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessC", - "page": 3, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless", - "page": 3, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA", - "page": 3, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless", - "page": 3, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless", - "page": 1, - "x": 1034, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless", - "page": 1, - "x": 1292, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless", - "page": 1, - "x": 1550, - "y": 1542, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless", - "page": 2, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless", - "page": 2, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treeoak_leafless/TreeOakA_Leafless", - "page": 2, - "x": 518, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treeoak_leafless/TreeOakB_Leafless", - "page": 2, - "x": 776, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless", - "page": 2, - "x": 1034, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/moss/MossA", - "page": 3, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/moss/MossB", - "page": 3, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/moss/MossC", - "page": 3, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/moss_leafless/moss_leaflessa", - "page": 3, - "x": 860, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/moss_leafless/moss_leaflessb", - "page": 3, - "x": 926, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/nutrifungus/NutrifungusA", - "page": 3, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/nutrifungus/NutrifungusB", - "page": 3, - "x": 132, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/nutrifungus/NutrifungusC", - "page": 3, - "x": 262, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusA", - "page": 3, - "x": 392, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusB", - "page": 3, - "x": 522, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusC", - "page": 3, - "x": 652, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/pincushioncactus/PincushionCactus", - "page": 3, - "x": 782, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/pincushioncactus/PincushionCactusA", - "page": 3, - "x": 912, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/plant_sowing", - "page": 3, - "x": 992, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/potatoplant/PotatoPlant", - "page": 3, - "x": 1042, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/psychoidplant/psychoidplanta", - "page": 3, - "x": 1058, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/raspberryimmature/raspberrybusha", - "page": 3, - "x": 1124, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/raspberryplant/raspberrybusha", - "page": 3, - "x": 1190, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/ratpalm/RatPalmA", - "page": 2, - "x": 1292, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/ratpalm/RatPalmB", - "page": 2, - "x": 1550, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/ratpalm/RatPalmC", - "page": 2, - "x": 2, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/riceplant/RicePlantA", - "page": 3, - "x": 1172, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/ripthorn/RipthornA", - "page": 3, - "x": 1302, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/ripthorn/RipthornB", - "page": 3, - "x": 1432, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/ripthorn/RipthornC", - "page": 3, - "x": 1562, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/rose/RoseA", - "page": 3, - "x": 1692, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactus", - "page": 2, - "x": 260, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactusA", - "page": 2, - "x": 518, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactusB", - "page": 3, - "x": 1822, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/saguarocactus_leafless/saguarocactus_leafless", - "page": 3, - "x": 1256, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/seed_default", - "page": 3, - "x": 1322, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/smokeleafplant/smokeleafplanta", - "page": 3, - "x": 1388, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/strawberryimmature/strawberryplant", - "page": 3, - "x": 1454, - "y": 392, - "w": 64, - "h": 64 - }, - { - "key": "things/plant/strawberryplant/StrawberryPlant", - "page": 3, - "x": 2, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/strawberryplant/StrawberryPlant_Grown", - "page": 3, - "x": 132, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/timbershroom/TimbershroomA", - "page": 2, - "x": 776, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/timbershroom/TimbershroomB", - "page": 2, - "x": 1034, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/timbershroom/TimbershroomC", - "page": 2, - "x": 1292, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/tinctoria/TinctoriaA", - "page": 3, - "x": 262, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/tinctoria/TinctoriaB", - "page": 3, - "x": 392, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/tinctoria/TinctoriaC", - "page": 3, - "x": 522, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/tinctoria/TinctoriaD", - "page": 3, - "x": 652, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/toxipotato/ToxipotatoA", - "page": 3, - "x": 782, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/toxipotato/ToxipotatoB", - "page": 3, - "x": 912, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/toxipotato/ToxipotatoC", - "page": 3, - "x": 1042, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treeanima/TreeAnimaA", - "page": 2, - "x": 1550, - "y": 260, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeanima/TreeAnimaB", - "page": 2, - "x": 2, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeanima/TreeAnimaC", - "page": 2, - "x": 260, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeanima/TreeAnimaD", - "page": 2, - "x": 518, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeanima/TreeAnimaE", - "page": 2, - "x": 776, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treebamboo/TreeBambooA", - "page": 2, - "x": 1034, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treebirch/TreeBirchA", - "page": 2, - "x": 1292, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treebirch_leafless/treebircha_leafless", - "page": 3, - "x": 1172, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treececropia/TreeCecropiaA", - "page": 2, - "x": 1550, - "y": 518, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treecocoa/TreeCocoaA", - "page": 2, - "x": 2, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treecypress/TreeCypressA", - "page": 2, - "x": 260, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treecypress/TreeCypressB", - "page": 2, - "x": 518, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treedrago/TreeDragoA", - "page": 2, - "x": 776, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineA", - "page": 2, - "x": 1034, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineB", - "page": 2, - "x": 1292, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineC", - "page": 2, - "x": 1550, - "y": 776, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treemaple/TreeMapleA", - "page": 2, - "x": 2, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treemaple/TreeMapleB", - "page": 2, - "x": 260, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeoak/TreeOakA", - "page": 2, - "x": 518, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeoak/TreeOakB", - "page": 2, - "x": 776, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treeoak_leafless/treeoak_leaflessa", - "page": 3, - "x": 1302, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treeoak_leafless/treeoak_leaflessb", - "page": 3, - "x": 1432, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treepalm/TreePalmA", - "page": 2, - "x": 1034, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treepine/TreePineA", - "page": 3, - "x": 1562, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treepolux/PoluxTreeA", - "page": 2, - "x": 1292, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treepolux/PoluxTreeB", - "page": 2, - "x": 1550, - "y": 1034, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treepolux/PoluxTreeC", - "page": 2, - "x": 2, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treepoplar/TreePoplarA", - "page": 2, - "x": 260, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/treepoplar_leafless/treepoplar_leaflessa", - "page": 3, - "x": 1692, - "y": 262, - "w": 128, - "h": 128 - }, - { - "key": "things/plant/treeteak/TreeTeakA", - "page": 0, - "x": 2, - "y": 2, - "w": 1280, - "h": 1280 - }, - { - "key": "things/plant/treeteak/TreeTeakB", - "page": 1, - "x": 2, - "y": 2, - "w": 1280, - "h": 1280 - }, - { - "key": "things/plant/witchwood/WitchwoodA", - "page": 2, - "x": 518, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/witchwood/WitchwoodB", - "page": 2, - "x": 776, - "y": 1292, - "w": 256, - "h": 256 - }, - { - "key": "things/plant/witchwood/WitchwoodC", - "page": 2, - "x": 1034, - "y": 1292, - "w": 256, - "h": 256 - } - ], - "sources": [ - { - "key": "things/plant/agarilux/AgariluxA", - "size": 13021, - "modified": 638886166560000000 - }, - { - "key": "things/plant/agarilux/AgariluxB", - "size": 12173, - "modified": 638886166560000000 - }, - { - "key": "things/plant/agave/AgaveA", - "size": 8907, - "modified": 638886166560000000 - }, - { - "key": "things/plant/agave/AgaveB", - "size": 6995, - "modified": 638886166560000000 - }, - { - "key": "things/plant/alocasia/AlocasiaA", - "size": 36035, - "modified": 638886166560000000 - }, - { - "key": "things/plant/alocasia/AlocasiaB", - "size": 40057, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ambrosia/Ambrosia", - "size": 15586, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ambrosia_leafless/ambrosia_leafless", - "size": 1859, - "modified": 636301600580000000 - }, - { - "key": "things/plant/ambrosiaimmature/ambrosia", - "size": 2288, - "modified": 636301600580000000 - }, - { - "key": "things/plant/astragalus/astragalusa", - "size": 2030, - "modified": 636301600580000000 - }, - { - "key": "things/plant/astragalus/astragalusb", - "size": 1771, - "modified": 636301600580000000 - }, - { - "key": "things/plant/astragalus/astragalusc", - "size": 1370, - "modified": 636301600580000000 - }, - { - "key": "things/plant/berryplant/BerryPlant", - "size": 11323, - "modified": 638886166560000000 - }, - { - "key": "things/plant/berryplant/BerryPlantA", - "size": 11323, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeA", - "size": 15427, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeB", - "size": 13035, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bonsaitree/BonsaiTreeC", - "size": 13365, - "modified": 638886166560000000 - }, - { - "key": "things/plant/brambles/BramblesA", - "size": 4318, - "modified": 638886166560000000 - }, - { - "key": "things/plant/brambles/BramblesB", - "size": 4000, - "modified": 638886166560000000 - }, - { - "key": "things/plant/burnedtree/burnedtreea", - "size": 2477, - "modified": 636301600580000000 - }, - { - "key": "things/plant/burnedtree/burnedtreeb", - "size": 3705, - "modified": 636301600580000000 - }, - { - "key": "things/plant/bush/BushA", - "size": 9392, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bush/BushB", - "size": 7641, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bush/BushC", - "size": 9425, - "modified": 638886166560000000 - }, - { - "key": "things/plant/bush/bush", - "size": 3912, - "modified": 636301600580000000 - }, - { - "key": "things/plant/bush_leafless/bush_leafless", - "size": 3632, - "modified": 636301600580000000 - }, - { - "key": "things/plant/chokevine/ChokevineA", - "size": 8845, - "modified": 638886166560000000 - }, - { - "key": "things/plant/chokevine/ChokevineB", - "size": 8934, - "modified": 638886166560000000 - }, - { - "key": "things/plant/chokevine/ChokevineC", - "size": 8052, - "modified": 638886166560000000 - }, - { - "key": "things/plant/chokevine/ChokevineD", - "size": 8120, - "modified": 638886166560000000 - }, - { - "key": "things/plant/cornimmature/cornplanta", - "size": 2274, - "modified": 636301600580000000 - }, - { - "key": "things/plant/cornplant/CornPlanA", - "size": 11699, - "modified": 638886166560000000 - }, - { - "key": "things/plant/cornplant/CornPlantA", - "size": 11699, - "modified": 638886166560000000 - }, - { - "key": "things/plant/cornplant/CornPlantB", - "size": 11489, - "modified": 638886166560000000 - }, - { - "key": "things/plant/cottonimmature/cottonplant", - "size": 3065, - "modified": 636301600580000000 - }, - { - "key": "things/plant/cottonplant/cottonplant", - "size": 4007, - "modified": 636301600580000000 - }, - { - "key": "things/plant/dandelion/Dandelion", - "size": 2828, - "modified": 638886166560000000 - }, - { - "key": "things/plant/dandelion/DandelionB", - "size": 5097, - "modified": 638886166560000000 - }, - { - "key": "things/plant/dandelion/DandelionC", - "size": 3068, - "modified": 638886166560000000 - }, - { - "key": "things/plant/daylily/DaylilyA", - "size": 15743, - "modified": 638886166560000000 - }, - { - "key": "things/plant/daylily/DaylilyB", - "size": 15067, - "modified": 638886166560000000 - }, - { - "key": "things/plant/daylily/daylily", - "size": 4262, - "modified": 636301600580000000 - }, - { - "key": "things/plant/devilstrand/DevilstrandA", - "size": 7824, - "modified": 638886166560000000 - }, - { - "key": "things/plant/devilstrand/DevilstrandB", - "size": 8266, - "modified": 638886166560000000 - }, - { - "key": "things/plant/devilstrand/devilstrand", - "size": 3431, - "modified": 636301600580000000 - }, - { - "key": "things/plant/fibercorn/FibercornA", - "size": 13149, - "modified": 638886166560000000 - }, - { - "key": "things/plant/fibercorn/FibercornB", - "size": 12614, - "modified": 638886166560000000 - }, - { - "key": "things/plant/fibercorn/FibercornC", - "size": 12065, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossA", - "size": 12942, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossB", - "size": 11007, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenmoss/GauranlenMossC", - "size": 13257, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodA", - "size": 12185, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodB", - "size": 12822, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlenpod/GauranlenPodC", - "size": 12370, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlentree/GauranlenTreeA", - "size": 65024, - "modified": 638886166560000000 - }, - { - "key": "things/plant/gauranlentree/GauranlenTreeB", - "size": 63921, - "modified": 638886166560000000 - }, - { - "key": "things/plant/glowstool/GlowstoolA", - "size": 8265, - "modified": 638886166560000000 - }, - { - "key": "things/plant/glowstool/GlowstoolB", - "size": 7573, - "modified": 638886166560000000 - }, - { - "key": "things/plant/grass/grassa", - "size": 4959, - "modified": 636301600580000000 - }, - { - "key": "things/plant/grass_leafless/grassa_leafless", - "size": 3963, - "modified": 636301600580000000 - }, - { - "key": "things/plant/haygrass/HaygrassA", - "size": 14688, - "modified": 638886166560000000 - }, - { - "key": "things/plant/healroot/HealrootA", - "size": 21988, - "modified": 638886166560000000 - }, - { - "key": "things/plant/healroot/HealrootB", - "size": 22119, - "modified": 638886166560000000 - }, - { - "key": "things/plant/healroot/healroot", - "size": 3591, - "modified": 636301600580000000 - }, - { - "key": "things/plant/hopsplant/hopsplanta", - "size": 4118, - "modified": 636301600580000000 - }, - { - "key": "things/plant/immature/ambrosia_immature/Ambrosia", - "size": 15586, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/berryplant_immature/BerryPlant", - "size": 10254, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/berryplant_immature/BerryPlantA", - "size": 10254, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/cornplant_immature/CornPlantA", - "size": 11204, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/riceplant_immature/RicePlantA", - "size": 9721, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/toxipotato_immature/ToxipotatoA", - "size": 18551, - "modified": 638886166560000000 - }, - { - "key": "things/plant/immature/treecocoa_immature/TreeCocoaA", - "size": 41985, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/agave_leafless/AgaveA_Leafless", - "size": 8209, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/agave_leafless/AgaveB_Leafless", - "size": 6578, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/ambrosia_leafless/Ambrosia_Leafless", - "size": 8201, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/berryplant_leafless/BerryBushLeaflessA", - "size": 10460, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/brambles_leafless/Brambles_LeaflessA", - "size": 4294, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/brambles_leafless/Brambles_LeaflessB", - "size": 3804, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessA", - "size": 9451, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessB", - "size": 7658, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/bush_leafless/Bush_LeaflessC", - "size": 9499, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessA", - "size": 8683, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessB", - "size": 8829, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessC", - "size": 7956, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/chokevine_leafless/Chokevine_LeaflessD", - "size": 8008, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessA", - "size": 7037, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessB", - "size": 3816, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/moss_leafless/Moss_LeaflessC", - "size": 3948, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/raspberryplant_leafless/RaspberryPlantA_Leafless", - "size": 10032, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/rimberryplant_leafless/RimBerryPlant_LeaflessA", - "size": 5538, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/ripthorn_leafless/TreePoplarA_Leafless", - "size": 17874, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/saguarocactus_leafless/SaguaroCactusA_Leafless", - "size": 10787, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/saguarocactus_leafless/SaguaroCactus_Leafless", - "size": 13074, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treebirch_leafless/TreeBirchA_Leafless", - "size": 21287, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treecypress_leafless/TreeCypressA_Leafless", - "size": 34173, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treemaple_leafless/TreeMapleA_Leafless", - "size": 32040, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treeoak_leafless/TreeOakA_Leafless", - "size": 20243, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treeoak_leafless/TreeOakB_Leafless", - "size": 30387, - "modified": 638886166560000000 - }, - { - "key": "things/plant/leafless/treepoplar_leafless/TreePoplarA_Leafless", - "size": 18199, - "modified": 638886166560000000 - }, - { - "key": "things/plant/moss/MossA", - "size": 7339, - "modified": 638886166560000000 - }, - { - "key": "things/plant/moss/MossB", - "size": 4198, - "modified": 638886166560000000 - }, - { - "key": "things/plant/moss/MossC", - "size": 4367, - "modified": 638886166560000000 - }, - { - "key": "things/plant/moss_leafless/moss_leaflessa", - "size": 3100, - "modified": 636301600580000000 - }, - { - "key": "things/plant/moss_leafless/moss_leaflessb", - "size": 2342, - "modified": 636301600580000000 - }, - { - "key": "things/plant/nutrifungus/NutrifungusA", - "size": 11528, - "modified": 638886166560000000 - }, - { - "key": "things/plant/nutrifungus/NutrifungusB", - "size": 10963, - "modified": 638886166560000000 - }, - { - "key": "things/plant/nutrifungus/NutrifungusC", - "size": 10596, - "modified": 638886166560000000 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusA", - "size": 16402, - "modified": 638886166560000000 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusB", - "size": 15639, - "modified": 638886166560000000 - }, - { - "key": "things/plant/pebblecactus/PebbleCactusC", - "size": 16086, - "modified": 638886166560000000 - }, - { - "key": "things/plant/pincushioncactus/PincushionCactus", - "size": 6020, - "modified": 638886166560000000 - }, - { - "key": "things/plant/pincushioncactus/PincushionCactusA", - "size": 6869, - "modified": 638886166560000000 - }, - { - "key": "things/plant/plant_sowing", - "size": 2123, - "modified": 636301600580000000 - }, - { - "key": "things/plant/potatoplant/PotatoPlant", - "size": 23123, - "modified": 638886166560000000 - }, - { - "key": "things/plant/psychoidplant/psychoidplanta", - "size": 5399, - "modified": 636301600580000000 - }, - { - "key": "things/plant/raspberryimmature/raspberrybusha", - "size": 4443, - "modified": 636301600580000000 - }, - { - "key": "things/plant/raspberryplant/raspberrybusha", - "size": 4558, - "modified": 636301600580000000 - }, - { - "key": "things/plant/ratpalm/RatPalmA", - "size": 27022, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ratpalm/RatPalmB", - "size": 25846, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ratpalm/RatPalmC", - "size": 28520, - "modified": 638886166560000000 - }, - { - "key": "things/plant/riceplant/RicePlantA", - "size": 15074, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ripthorn/RipthornA", - "size": 21250, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ripthorn/RipthornB", - "size": 20969, - "modified": 638886166560000000 - }, - { - "key": "things/plant/ripthorn/RipthornC", - "size": 20058, - "modified": 638886166560000000 - }, - { - "key": "things/plant/rose/RoseA", - "size": 12426, - "modified": 638886166560000000 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactus", - "size": 13723, - "modified": 638886166560000000 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactusA", - "size": 11295, - "modified": 638886166560000000 - }, - { - "key": "things/plant/saguarocactus/SaguaroCactusB", - "size": 4426, - "modified": 638886166560000000 - }, - { - "key": "things/plant/saguarocactus_leafless/saguarocactus_leafless", - "size": 2798, - "modified": 636301600580000000 - }, - { - "key": "things/plant/seed_default", - "size": 426, - "modified": 636301600580000000 - }, - { - "key": "things/plant/smokeleafplant/smokeleafplanta", - "size": 5336, - "modified": 636301600580000000 - }, - { - "key": "things/plant/strawberryimmature/strawberryplant", - "size": 3757, - "modified": 636301600580000000 - }, - { - "key": "things/plant/strawberryplant/StrawberryPlant", - "size": 12210, - "modified": 638886166560000000 - }, - { - "key": "things/plant/strawberryplant/StrawberryPlant_Grown", - "size": 12863, - "modified": 638886166560000000 - }, - { - "key": "things/plant/timbershroom/TimbershroomA", - "size": 28387, - "modified": 638886166560000000 - }, - { - "key": "things/plant/timbershroom/TimbershroomB", - "size": 27826, - "modified": 638886166560000000 - }, - { - "key": "things/plant/timbershroom/TimbershroomC", - "size": 26787, - "modified": 638886166560000000 - }, - { - "key": "things/plant/tinctoria/TinctoriaA", - "size": 12001, - "modified": 638886166560000000 - }, - { - "key": "things/plant/tinctoria/TinctoriaB", - "size": 12884, - "modified": 638886166560000000 - }, - { - "key": "things/plant/tinctoria/TinctoriaC", - "size": 11728, - "modified": 638886166560000000 - }, - { - "key": "things/plant/tinctoria/TinctoriaD", - "size": 12432, - "modified": 638886166560000000 - }, - { - "key": "things/plant/toxipotato/ToxipotatoA", - "size": 25166, - "modified": 638886166560000000 - }, - { - "key": "things/plant/toxipotato/ToxipotatoB", - "size": 25541, - "modified": 638886166560000000 - }, - { - "key": "things/plant/toxipotato/ToxipotatoC", - "size": 25064, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeanima/TreeAnimaA", - "size": 60055, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeanima/TreeAnimaB", - "size": 71005, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeanima/TreeAnimaC", - "size": 68944, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeanima/TreeAnimaD", - "size": 75639, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeanima/TreeAnimaE", - "size": 80172, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treebamboo/TreeBambooA", - "size": 53698, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treebirch/TreeBirchA", - "size": 47517, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treebirch_leafless/treebircha_leafless", - "size": 4913, - "modified": 636301600580000000 - }, - { - "key": "things/plant/treececropia/TreeCecropiaA", - "size": 43646, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treecocoa/TreeCocoaA", - "size": 39011, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treecypress/TreeCypressA", - "size": 50992, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treecypress/TreeCypressB", - "size": 47546, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treedrago/TreeDragoA", - "size": 40814, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineA", - "size": 23251, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineB", - "size": 23859, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treegraypine/TreeGrayPineC", - "size": 23930, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treemaple/TreeMapleA", - "size": 63152, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treemaple/TreeMapleB", - "size": 66422, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeoak/TreeOakA", - "size": 39833, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeoak/TreeOakB", - "size": 37184, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeoak_leafless/treeoak_leaflessa", - "size": 5523, - "modified": 636301600580000000 - }, - { - "key": "things/plant/treeoak_leafless/treeoak_leaflessb", - "size": 7916, - "modified": 636301600580000000 - }, - { - "key": "things/plant/treepalm/TreePalmA", - "size": 37015, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepine/TreePineA", - "size": 10200, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepolux/PoluxTreeA", - "size": 63901, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepolux/PoluxTreeB", - "size": 56238, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepolux/PoluxTreeC", - "size": 61965, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepoplar/TreePoplarA", - "size": 30128, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treepoplar_leafless/treepoplar_leaflessa", - "size": 5561, - "modified": 636301600580000000 - }, - { - "key": "things/plant/treeteak/TreeTeakA", - "size": 108050, - "modified": 638886166560000000 - }, - { - "key": "things/plant/treeteak/TreeTeakB", - "size": 88855, - "modified": 638886166560000000 - }, - { - "key": "things/plant/witchwood/WitchwoodA", - "size": 31324, - "modified": 638886166560000000 - }, - { - "key": "things/plant/witchwood/WitchwoodB", - "size": 32030, - "modified": 638886166560000000 - }, - { - "key": "things/plant/witchwood/WitchwoodC", - "size": 31524, - "modified": 638886166560000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.plant.atlas.0.png b/src/LittleSim/Assets/Atlases/things.plant.atlas.0.png deleted file mode 100644 index 8b3e889..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.plant.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.plant.atlas.1.png b/src/LittleSim/Assets/Atlases/things.plant.atlas.1.png deleted file mode 100644 index 193efb2..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.plant.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.plant.atlas.2.png b/src/LittleSim/Assets/Atlases/things.plant.atlas.2.png deleted file mode 100644 index 88346b3..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.plant.atlas.2.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.plant.atlas.3.png b/src/LittleSim/Assets/Atlases/things.plant.atlas.3.png deleted file mode 100644 index b3ddbf4..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.plant.atlas.3.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.projectile.atlas b/src/LittleSim/Assets/Atlases/things.projectile.atlas deleted file mode 100644 index b43e70d..0000000 --- a/src/LittleSim/Assets/Atlases/things.projectile.atlas +++ /dev/null @@ -1,251 +0,0 @@ -{ - "version": 2, - "name": "things.projectile", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.projectile.atlas.0.png", - "width": 2048, - "height": 128 - } - ], - "regions": [ - { - "key": "things/projectile/arrow_small", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/bullet_big", - "page": 0, - "x": 68, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/bullet_shotgun", - "page": 0, - "x": 134, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/bullet_small", - "page": 0, - "x": 200, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/charge_small", - "page": 0, - "x": 266, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/chargelanceshot", - "page": 0, - "x": 332, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/grenade", - "page": 0, - "x": 398, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/grenadeemp", - "page": 0, - "x": 464, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/infernocannonshot", - "page": 0, - "x": 530, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/molotov", - "page": 0, - "x": 596, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/pilum", - "page": 0, - "x": 662, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/rocket_big", - "page": 0, - "x": 728, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/shellbomb", - "page": 0, - "x": 794, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/shellemp", - "page": 0, - "x": 860, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/shellincendiary", - "page": 0, - "x": 926, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/spark", - "page": 0, - "x": 992, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/stone", - "page": 0, - "x": 1058, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/projectile/watersplash", - "page": 0, - "x": 1124, - "y": 2, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "things/projectile/arrow_small", - "size": 1196, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/bullet_big", - "size": 1409, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/bullet_shotgun", - "size": 3175, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/bullet_small", - "size": 1158, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/charge_small", - "size": 1155, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/chargelanceshot", - "size": 689, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/grenade", - "size": 511, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/grenadeemp", - "size": 511, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/infernocannonshot", - "size": 2073, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/molotov", - "size": 1503, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/pilum", - "size": 308, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/rocket_big", - "size": 1059, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/shellbomb", - "size": 1530, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/shellemp", - "size": 1547, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/shellincendiary", - "size": 1651, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/spark", - "size": 591, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/stone", - "size": 742, - "modified": 636301600580000000 - }, - { - "key": "things/projectile/watersplash", - "size": 1670, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.projectile.atlas.0.png b/src/LittleSim/Assets/Atlases/things.projectile.atlas.0.png deleted file mode 100644 index 3b8eb1b..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.projectile.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.special.atlas b/src/LittleSim/Assets/Atlases/things.special.atlas deleted file mode 100644 index 4a68528..0000000 --- a/src/LittleSim/Assets/Atlases/things.special.atlas +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 2, - "name": "things.special", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.special.atlas.0.png", - "width": 2048, - "height": 512 - } - ], - "regions": [ - { - "key": "things/special/burningwicka", - "page": 0, - "x": 324, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/burningwickb", - "page": 0, - "x": 454, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/droppod", - "page": 0, - "x": 584, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/droppodshadow", - "page": 0, - "x": 1302, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/special/fire/firea", - "page": 0, - "x": 714, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/fire/fireb", - "page": 0, - "x": 844, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/fire/firec", - "page": 0, - "x": 974, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/special/forbiddenoverlay", - "page": 0, - "x": 1368, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/special/power/overlaybase", - "page": 0, - "x": 1434, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/special/power/overlaybaseanticipated", - "page": 0, - "x": 1500, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "things/special/power/overlaywire", - "page": 0, - "x": 1104, - "y": 2, - "w": 64, - "h": 128 - }, - { - "key": "things/special/power/overlaywireanticipated", - "page": 0, - "x": 1170, - "y": 2, - "w": 64, - "h": 128 - }, - { - "key": "things/special/power/transmitteratlas", - "page": 0, - "x": 2, - "y": 2, - "w": 320, - "h": 320 - }, - { - "key": "things/special/power/wire", - "page": 0, - "x": 1236, - "y": 2, - "w": 64, - "h": 128 - }, - { - "key": "things/special/terrainblueprint", - "page": 0, - "x": 1566, - "y": 2, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "things/special/burningwicka", - "size": 2947, - "modified": 636301600580000000 - }, - { - "key": "things/special/burningwickb", - "size": 3040, - "modified": 636301600580000000 - }, - { - "key": "things/special/droppod", - "size": 6532, - "modified": 636301600580000000 - }, - { - "key": "things/special/droppodshadow", - "size": 1631, - "modified": 636301600580000000 - }, - { - "key": "things/special/fire/firea", - "size": 18974, - "modified": 636301600580000000 - }, - { - "key": "things/special/fire/fireb", - "size": 18294, - "modified": 636301600580000000 - }, - { - "key": "things/special/fire/firec", - "size": 21291, - "modified": 636301600580000000 - }, - { - "key": "things/special/forbiddenoverlay", - "size": 1137, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/overlaybase", - "size": 594, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/overlaybaseanticipated", - "size": 704, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/overlaywire", - "size": 2430, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/overlaywireanticipated", - "size": 2402, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/transmitteratlas", - "size": 19903, - "modified": 636301600580000000 - }, - { - "key": "things/special/power/wire", - "size": 1908, - "modified": 636301600580000000 - }, - { - "key": "things/special/terrainblueprint", - "size": 367, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.special.atlas.0.png b/src/LittleSim/Assets/Atlases/things.special.atlas.0.png deleted file mode 100644 index 89f0b84..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.special.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/things.world.atlas b/src/LittleSim/Assets/Atlases/things.world.atlas deleted file mode 100644 index ec45c28..0000000 --- a/src/LittleSim/Assets/Atlases/things.world.atlas +++ /dev/null @@ -1,95 +0,0 @@ -{ - "version": 2, - "name": "things.world", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "things.world.atlas.0.png", - "width": 1024, - "height": 256 - } - ], - "regions": [ - { - "key": "things/world/worldobjects/expanding/PirateOutpost", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/world/worldobjects/expanding/Town", - "page": 0, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/world/worldobjects/expanding/TownRough", - "page": 0, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/world/worldobjects/expanding/Village", - "page": 0, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/world/worldobjects/expanding/VillageRough", - "page": 0, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "things/world/worldobjects/expanding/VillageSavage", - "page": 0, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - } - ], - "sources": [ - { - "key": "things/world/worldobjects/expanding/PirateOutpost", - "size": 3356, - "modified": 638886166560000000 - }, - { - "key": "things/world/worldobjects/expanding/Town", - "size": 1267, - "modified": 638886166560000000 - }, - { - "key": "things/world/worldobjects/expanding/TownRough", - "size": 1487, - "modified": 638886166560000000 - }, - { - "key": "things/world/worldobjects/expanding/Village", - "size": 1485, - "modified": 638886166560000000 - }, - { - "key": "things/world/worldobjects/expanding/VillageRough", - "size": 1863, - "modified": 638886166560000000 - }, - { - "key": "things/world/worldobjects/expanding/VillageSavage", - "size": 1765, - "modified": 638886166560000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/things.world.atlas.0.png b/src/LittleSim/Assets/Atlases/things.world.atlas.0.png deleted file mode 100644 index ba0c776..0000000 Binary files a/src/LittleSim/Assets/Atlases/things.world.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.atlas b/src/LittleSim/Assets/Atlases/ui.atlas deleted file mode 100644 index ed4fe4c..0000000 --- a/src/LittleSim/Assets/Atlases/ui.atlas +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 2, - "name": "ui", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.atlas.0.png", - "width": 128, - "height": 128 - } - ], - "regions": [ - { - "key": "ui/VELogo", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "ui/VELogo", - "size": 3986, - "modified": 638886166560000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.atlas.0.png deleted file mode 100644 index afd0613..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.buttons.atlas b/src/LittleSim/Assets/Atlases/ui.buttons.atlas deleted file mode 100644 index be13682..0000000 --- a/src/LittleSim/Assets/Atlases/ui.buttons.atlas +++ /dev/null @@ -1,927 +0,0 @@ -{ - "version": 2, - "name": "ui.buttons", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.buttons.atlas.0.png", - "width": 2048, - "height": 128 - } - ], - "regions": [ - { - "key": "ui/buttons/abandon", - "page": 0, - "x": 1124, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/abandonspecificcount", - "page": 0, - "x": 1150, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/autohomearea", - "page": 0, - "x": 1176, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/copy", - "page": 0, - "x": 340, - "y": 68, - "w": 18, - "h": 24 - }, - { - "key": "ui/buttons/delete", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/dev/add", - "page": 0, - "x": 1202, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/centeronpoints", - "page": 0, - "x": 1228, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/collapse", - "page": 0, - "x": 403, - "y": 68, - "w": 18, - "h": 18 - }, - { - "key": "ui/buttons/dev/curvereset", - "page": 0, - "x": 1254, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/empty", - "page": 0, - "x": 1280, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/inspectmodetoggle", - "page": 0, - "x": 1306, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/newfile", - "page": 0, - "x": 1332, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/newitem", - "page": 0, - "x": 1358, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/play", - "page": 0, - "x": 1384, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomhor1", - "page": 0, - "x": 1410, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomhor100", - "page": 0, - "x": 1436, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomhor20k", - "page": 0, - "x": 1462, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomver1", - "page": 0, - "x": 1488, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomver100", - "page": 0, - "x": 1514, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/quickzoomver20k", - "page": 0, - "x": 1540, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/rangematch", - "page": 0, - "x": 380, - "y": 68, - "w": 21, - "h": 21 - }, - { - "key": "ui/buttons/dev/reload", - "page": 0, - "x": 1566, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/rename", - "page": 0, - "x": 1592, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/reveal", - "page": 0, - "x": 423, - "y": 68, - "w": 18, - "h": 18 - }, - { - "key": "ui/buttons/dev/save", - "page": 0, - "x": 1618, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/dev/stop", - "page": 0, - "x": 1644, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/opendebugactionsmenu", - "page": 0, - "x": 1670, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/openinspector", - "page": 0, - "x": 1696, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/openinspectsettings", - "page": 0, - "x": 1722, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/openpackageeditor", - "page": 0, - "x": 1748, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/togglegodmode", - "page": 0, - "x": 1774, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/togglelog", - "page": 0, - "x": 1800, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/devroot/togglepauseonerror", - "page": 0, - "x": 1826, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/draghash", - "page": 0, - "x": 1852, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/drop", - "page": 0, - "x": 1878, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/expandingicons", - "page": 0, - "x": 1904, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/infobutton", - "page": 0, - "x": 1930, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/ingest", - "page": 0, - "x": 1956, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/locknorthup", - "page": 0, - "x": 1982, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/mainbuttons/IconAnimals", - "page": 0, - "x": 68, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconArchitect", - "page": 0, - "x": 134, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconAssign", - "page": 0, - "x": 200, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconFactions", - "page": 0, - "x": 266, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconHistory", - "page": 0, - "x": 332, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconMechanoids", - "page": 0, - "x": 398, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconMenu", - "page": 0, - "x": 464, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconQuests", - "page": 0, - "x": 530, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconResearch", - "page": 0, - "x": 596, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconRestrict", - "page": 0, - "x": 662, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconSchedule", - "page": 0, - "x": 728, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconWildlife", - "page": 0, - "x": 794, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconWork", - "page": 0, - "x": 860, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/mainbuttons/IconWorld", - "page": 0, - "x": 926, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/minus", - "page": 0, - "x": 2008, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/openspecifictab", - "page": 0, - "x": 2, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/openstatsreport", - "page": 0, - "x": 992, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/paste", - "page": 0, - "x": 360, - "y": 68, - "w": 18, - "h": 24 - }, - { - "key": "ui/buttons/plus", - "page": 0, - "x": 28, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/rename", - "page": 0, - "x": 1058, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/buttons/reorderdown", - "page": 0, - "x": 54, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/reorderup", - "page": 0, - "x": 80, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/resourcereadoutcategorized", - "page": 0, - "x": 106, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/selectnextoverlapping", - "page": 0, - "x": 132, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/showcolonistbar", - "page": 0, - "x": 158, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/showenvironment", - "page": 0, - "x": 184, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/showlearninghelper", - "page": 0, - "x": 210, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/showroofoverlay", - "page": 0, - "x": 236, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/showzones", - "page": 0, - "x": 262, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/suspend", - "page": 0, - "x": 288, - "y": 68, - "w": 24, - "h": 24 - }, - { - "key": "ui/buttons/useplanetdaynightsystem", - "page": 0, - "x": 314, - "y": 68, - "w": 24, - "h": 24 - } - ], - "sources": [ - { - "key": "ui/buttons/abandon", - "size": 242, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/abandonspecificcount", - "size": 251, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/autohomearea", - "size": 281, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/copy", - "size": 270, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/delete", - "size": 1806, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/add", - "size": 220, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/centeronpoints", - "size": 259, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/collapse", - "size": 197, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/curvereset", - "size": 313, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/empty", - "size": 159, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/inspectmodetoggle", - "size": 243, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/newfile", - "size": 270, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/newitem", - "size": 304, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/play", - "size": 246, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomhor1", - "size": 194, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomhor100", - "size": 268, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomhor20k", - "size": 277, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomver1", - "size": 214, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomver100", - "size": 278, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/quickzoomver20k", - "size": 285, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/rangematch", - "size": 273, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/reload", - "size": 286, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/rename", - "size": 284, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/reveal", - "size": 205, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/save", - "size": 249, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/dev/stop", - "size": 236, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/opendebugactionsmenu", - "size": 312, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/openinspector", - "size": 265, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/openinspectsettings", - "size": 253, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/openpackageeditor", - "size": 260, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/togglegodmode", - "size": 262, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/togglelog", - "size": 247, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/devroot/togglepauseonerror", - "size": 262, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/draghash", - "size": 289, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/drop", - "size": 265, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/expandingicons", - "size": 234, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/infobutton", - "size": 229, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/ingest", - "size": 307, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/locknorthup", - "size": 249, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/mainbuttons/IconAnimals", - "size": 737, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconArchitect", - "size": 596, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconAssign", - "size": 580, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconFactions", - "size": 367, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconHistory", - "size": 835, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconMechanoids", - "size": 1253, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconMenu", - "size": 276, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconQuests", - "size": 408, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconResearch", - "size": 852, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconRestrict", - "size": 745, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconSchedule", - "size": 745, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconWildlife", - "size": 804, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconWork", - "size": 658, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/mainbuttons/IconWorld", - "size": 1090, - "modified": 638886166560000000 - }, - { - "key": "ui/buttons/minus", - "size": 202, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/openspecifictab", - "size": 234, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/openstatsreport", - "size": 436, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/paste", - "size": 279, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/plus", - "size": 235, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/rename", - "size": 972, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/reorderdown", - "size": 297, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/reorderup", - "size": 299, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/resourcereadoutcategorized", - "size": 245, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/selectnextoverlapping", - "size": 228, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/showcolonistbar", - "size": 279, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/showenvironment", - "size": 267, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/showlearninghelper", - "size": 292, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/showroofoverlay", - "size": 260, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/showzones", - "size": 212, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/suspend", - "size": 626, - "modified": 636301600580000000 - }, - { - "key": "ui/buttons/useplanetdaynightsystem", - "size": 336, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.buttons.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.buttons.atlas.0.png deleted file mode 100644 index 4cac719..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.buttons.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.commands.atlas b/src/LittleSim/Assets/Atlases/ui.commands.atlas deleted file mode 100644 index 498c1a3..0000000 --- a/src/LittleSim/Assets/Atlases/ui.commands.atlas +++ /dev/null @@ -1,563 +0,0 @@ -{ - "version": 2, - "name": "ui.commands", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.commands.atlas.0.png", - "width": 2048, - "height": 256 - } - ], - "regions": [ - { - "key": "ui/commands/abandonhome", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/asmedical", - "page": 0, - "x": 68, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/assignowner", - "page": 0, - "x": 134, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/attack", - "page": 0, - "x": 200, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/copysettings", - "page": 0, - "x": 266, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/desirepower", - "page": 0, - "x": 332, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/detonate", - "page": 0, - "x": 266, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/draft", - "page": 0, - "x": 398, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/fireatwill", - "page": 0, - "x": 464, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/forbidden", - "page": 0, - "x": 530, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/formcaravan", - "page": 0, - "x": 596, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/forprisoners", - "page": 0, - "x": 662, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/gatherspotactive", - "page": 0, - "x": 728, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/getoutofbed", - "page": 0, - "x": 794, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/halt", - "page": 0, - "x": 860, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/hidezone", - "page": 0, - "x": 926, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/holdfire", - "page": 0, - "x": 992, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/holdopen", - "page": 0, - "x": 1058, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/install", - "page": 0, - "x": 1124, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/launchreport", - "page": 0, - "x": 326, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/launchship", - "page": 0, - "x": 386, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/loadtransporter", - "page": 0, - "x": 1190, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/mergecaravans", - "page": 0, - "x": 1256, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/pastesettings", - "page": 0, - "x": 1322, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/podeject", - "page": 0, - "x": 446, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/releaseanimals", - "page": 0, - "x": 1388, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/renamezone", - "page": 0, - "x": 1454, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/selectalltransporters", - "page": 0, - "x": 1520, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/selectnexttransporter", - "page": 0, - "x": 1586, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/selectprevioustransporter", - "page": 0, - "x": 1652, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/setplanttogrow", - "page": 0, - "x": 1718, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/settargetfuellevel", - "page": 0, - "x": 1784, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/settle", - "page": 0, - "x": 1850, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/showmap", - "page": 0, - "x": 1916, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/splitcaravan", - "page": 0, - "x": 1982, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/squadattack", - "page": 0, - "x": 2, - "y": 68, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/templower", - "page": 0, - "x": 506, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/tempraise", - "page": 0, - "x": 566, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/tempreset", - "page": 0, - "x": 626, - "y": 68, - "w": 58, - "h": 58 - }, - { - "key": "ui/commands/trade", - "page": 0, - "x": 68, - "y": 68, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/tryreconnect", - "page": 0, - "x": 134, - "y": 68, - "w": 64, - "h": 64 - }, - { - "key": "ui/commands/vent", - "page": 0, - "x": 200, - "y": 68, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "ui/commands/abandonhome", - "size": 1553, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/asmedical", - "size": 319, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/assignowner", - "size": 1085, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/attack", - "size": 599, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/copysettings", - "size": 843, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/desirepower", - "size": 1191, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/detonate", - "size": 5035, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/draft", - "size": 2619, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/fireatwill", - "size": 2227, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/forbidden", - "size": 1171, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/formcaravan", - "size": 1750, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/forprisoners", - "size": 2170, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/gatherspotactive", - "size": 727, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/getoutofbed", - "size": 1750, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/halt", - "size": 1077, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/hidezone", - "size": 2993, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/holdfire", - "size": 1275, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/holdopen", - "size": 1321, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/install", - "size": 991, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/launchreport", - "size": 569, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/launchship", - "size": 4914, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/loadtransporter", - "size": 2148, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/mergecaravans", - "size": 1702, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/pastesettings", - "size": 1020, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/podeject", - "size": 2885, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/releaseanimals", - "size": 1722, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/renamezone", - "size": 592, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/selectalltransporters", - "size": 2691, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/selectnexttransporter", - "size": 1490, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/selectprevioustransporter", - "size": 1466, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/setplanttogrow", - "size": 5048, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/settargetfuellevel", - "size": 1637, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/settle", - "size": 1308, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/showmap", - "size": 2879, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/splitcaravan", - "size": 1728, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/squadattack", - "size": 1220, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/templower", - "size": 2035, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/tempraise", - "size": 1977, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/tempreset", - "size": 1889, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/trade", - "size": 3056, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/tryreconnect", - "size": 1804, - "modified": 636301600580000000 - }, - { - "key": "ui/commands/vent", - "size": 3033, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.commands.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.commands.atlas.0.png deleted file mode 100644 index e86f75e..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.commands.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.cursors.atlas b/src/LittleSim/Assets/Atlases/ui.cursors.atlas deleted file mode 100644 index 4388193..0000000 --- a/src/LittleSim/Assets/Atlases/ui.cursors.atlas +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 2, - "name": "ui.cursors", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.cursors.atlas.0.png", - "width": 64, - "height": 64 - } - ], - "regions": [ - { - "key": "ui/cursors/cursorcustom", - "page": 0, - "x": 2, - "y": 2, - "w": 32, - "h": 32 - } - ], - "sources": [ - { - "key": "ui/cursors/cursorcustom", - "size": 473, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.cursors.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.cursors.atlas.0.png deleted file mode 100644 index 36d8496..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.cursors.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.designators.atlas b/src/LittleSim/Assets/Atlases/ui.designators.atlas deleted file mode 100644 index 3ccae72..0000000 --- a/src/LittleSim/Assets/Atlases/ui.designators.atlas +++ /dev/null @@ -1,433 +0,0 @@ -{ - "version": 2, - "name": "ui.designators", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.designators.atlas.0.png", - "width": 2048, - "height": 256 - } - ], - "regions": [ - { - "key": "ui/designators/areaallowedclear", - "page": 0, - "x": 2, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/areaallowedexpand", - "page": 0, - "x": 68, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/buildroofareaclear", - "page": 0, - "x": 134, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/buildroofareaexpand", - "page": 0, - "x": 200, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/cancel", - "page": 0, - "x": 266, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/claim", - "page": 0, - "x": 332, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/cutplants", - "page": 0, - "x": 398, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/deconstruct", - "page": 0, - "x": 464, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/harvest", - "page": 0, - "x": 530, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/harvestwood", - "page": 0, - "x": 596, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/haul", - "page": 0, - "x": 662, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/homeareaoff", - "page": 0, - "x": 728, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/homeareaon", - "page": 0, - "x": 794, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/hunt", - "page": 0, - "x": 860, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/mine", - "page": 0, - "x": 926, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/noroofareaoff", - "page": 0, - "x": 992, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/noroofareaon", - "page": 0, - "x": 1058, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/open", - "page": 0, - "x": 1124, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/planoff", - "page": 0, - "x": 1190, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/planon", - "page": 0, - "x": 1256, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/rearmtrap", - "page": 0, - "x": 1322, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/removefloor", - "page": 0, - "x": 1388, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/slaughter", - "page": 0, - "x": 1454, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/smoothfloor", - "page": 0, - "x": 1520, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/snowclearareaoff", - "page": 0, - "x": 1586, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/snowclearareaon", - "page": 0, - "x": 1652, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/strip", - "page": 0, - "x": 1718, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/tame", - "page": 0, - "x": 1784, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/uninstall", - "page": 0, - "x": 1850, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/zonecreate_growing", - "page": 0, - "x": 1916, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/zonecreate_stockpile", - "page": 0, - "x": 1982, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/designators/zonedelete", - "page": 0, - "x": 2, - "y": 68, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "ui/designators/areaallowedclear", - "size": 1457, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/areaallowedexpand", - "size": 465, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/buildroofareaclear", - "size": 1829, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/buildroofareaexpand", - "size": 1009, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/cancel", - "size": 2813, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/claim", - "size": 396, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/cutplants", - "size": 1852, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/deconstruct", - "size": 532, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/harvest", - "size": 2671, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/harvestwood", - "size": 1554, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/haul", - "size": 2199, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/homeareaoff", - "size": 1829, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/homeareaon", - "size": 1110, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/hunt", - "size": 2315, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/mine", - "size": 2003, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/noroofareaoff", - "size": 1358, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/noroofareaon", - "size": 430, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/open", - "size": 2279, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/planoff", - "size": 1347, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/planon", - "size": 556, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/rearmtrap", - "size": 1782, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/removefloor", - "size": 2597, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/slaughter", - "size": 1580, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/smoothfloor", - "size": 1722, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/snowclearareaoff", - "size": 3053, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/snowclearareaon", - "size": 2907, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/strip", - "size": 3472, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/tame", - "size": 2384, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/uninstall", - "size": 1111, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/zonecreate_growing", - "size": 1481, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/zonecreate_stockpile", - "size": 410, - "modified": 636301600580000000 - }, - { - "key": "ui/designators/zonedelete", - "size": 1459, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.designators.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.designators.atlas.0.png deleted file mode 100644 index 3cd587b..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.designators.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.heroart.atlas b/src/LittleSim/Assets/Atlases/ui.heroart.atlas deleted file mode 100644 index 4ddcca2..0000000 --- a/src/LittleSim/Assets/Atlases/ui.heroart.atlas +++ /dev/null @@ -1,230 +0,0 @@ -{ - "version": 2, - "name": "ui.heroart", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.heroart.atlas.0.png", - "width": 2052, - "height": 1284 - }, - { - "file": "ui.heroart.atlas.1.png", - "width": 2048, - "height": 1024 - } - ], - "regions": [ - { - "key": "ui/heroart/bgplanet", - "page": 0, - "x": 2, - "y": 2, - "w": 2048, - "h": 1280 - }, - { - "key": "ui/heroart/gametitle", - "page": 1, - "x": 2, - "y": 624, - "w": 1024, - "h": 145 - }, - { - "key": "ui/heroart/ludeonlogosmall", - "page": 1, - "x": 1770, - "y": 624, - "w": 200, - "h": 58 - }, - { - "key": "ui/heroart/rimworldlogo", - "page": 1, - "x": 1286, - "y": 624, - "w": 128, - "h": 128 - }, - { - "key": "ui/heroart/storytellers/cassandraclassic", - "page": 1, - "x": 2, - "y": 2, - "w": 580, - "h": 620 - }, - { - "key": "ui/heroart/storytellers/cassandraclassictiny", - "page": 1, - "x": 1416, - "y": 624, - "w": 116, - "h": 124 - }, - { - "key": "ui/heroart/storytellers/highlight", - "page": 1, - "x": 1028, - "y": 624, - "w": 256, - "h": 128 - }, - { - "key": "ui/heroart/storytellers/phoebefriendly", - "page": 1, - "x": 584, - "y": 2, - "w": 580, - "h": 620 - }, - { - "key": "ui/heroart/storytellers/phoebefriendlytiny", - "page": 1, - "x": 1534, - "y": 624, - "w": 116, - "h": 124 - }, - { - "key": "ui/heroart/storytellers/randyrandom", - "page": 1, - "x": 1166, - "y": 2, - "w": 580, - "h": 620 - }, - { - "key": "ui/heroart/storytellers/randyrandomtiny", - "page": 1, - "x": 1652, - "y": 624, - "w": 116, - "h": 124 - }, - { - "key": "ui/heroart/webicons/blog", - "page": 1, - "x": 1972, - "y": 624, - "w": 60, - "h": 45 - }, - { - "key": "ui/heroart/webicons/book", - "page": 1, - "x": 2, - "y": 771, - "w": 60, - "h": 45 - }, - { - "key": "ui/heroart/webicons/forums", - "page": 1, - "x": 64, - "y": 771, - "w": 60, - "h": 45 - }, - { - "key": "ui/heroart/webicons/soundtrack", - "page": 1, - "x": 126, - "y": 771, - "w": 60, - "h": 45 - }, - { - "key": "ui/heroart/webicons/twitter", - "page": 1, - "x": 188, - "y": 771, - "w": 60, - "h": 45 - } - ], - "sources": [ - { - "key": "ui/heroart/bgplanet", - "size": 1323856, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/gametitle", - "size": 53954, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/ludeonlogosmall", - "size": 3940, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/rimworldlogo", - "size": 9741, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/cassandraclassic", - "size": 165255, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/cassandraclassictiny", - "size": 14122, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/highlight", - "size": 4070, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/phoebefriendly", - "size": 186209, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/phoebefriendlytiny", - "size": 15434, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/randyrandom", - "size": 168726, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/storytellers/randyrandomtiny", - "size": 16920, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/webicons/blog", - "size": 1742, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/webicons/book", - "size": 3125, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/webicons/forums", - "size": 707, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/webicons/soundtrack", - "size": 783, - "modified": 636301600580000000 - }, - { - "key": "ui/heroart/webicons/twitter", - "size": 1007, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.heroart.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.heroart.atlas.0.png deleted file mode 100644 index d22317e..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.heroart.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.heroart.atlas.1.png b/src/LittleSim/Assets/Atlases/ui.heroart.atlas.1.png deleted file mode 100644 index 8652524..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.heroart.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.icons.atlas b/src/LittleSim/Assets/Atlases/ui.icons.atlas deleted file mode 100644 index 15b49d6..0000000 --- a/src/LittleSim/Assets/Atlases/ui.icons.atlas +++ /dev/null @@ -1,823 +0,0 @@ -{ - "version": 2, - "name": "ui.icons", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.icons.atlas.0.png", - "width": 2048, - "height": 64 - } - ], - "regions": [ - { - "key": "ui/icons/animal/followdrafted", - "page": 0, - "x": 674, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/animal/followfieldwork", - "page": 0, - "x": 700, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/animal/slaughter", - "page": 0, - "x": 726, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/colonistbar/attacking", - "page": 0, - "x": 1324, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/burning", - "page": 0, - "x": 1346, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/fleeing", - "page": 0, - "x": 1368, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/idle", - "page": 0, - "x": 1390, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/medicalrest", - "page": 0, - "x": 1412, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/mentalstateaggro", - "page": 0, - "x": 1434, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/mentalstatenonaggro", - "page": 0, - "x": 1456, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/colonistbar/sleeping", - "page": 0, - "x": 1478, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/contentsources/canupload", - "page": 0, - "x": 752, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/contentsources/localfolder", - "page": 0, - "x": 778, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/contentsources/steamworkshop", - "page": 0, - "x": 804, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/drugpolicy/foraddiction", - "page": 0, - "x": 830, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/drugpolicy/forjoy", - "page": 0, - "x": 856, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/drugpolicy/scheduled", - "page": 0, - "x": 882, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/fixedcheck", - "page": 0, - "x": 908, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/gender/female", - "page": 0, - "x": 934, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/gender/genderless", - "page": 0, - "x": 960, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/gender/male", - "page": 0, - "x": 986, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/hostilityresponse/attack", - "page": 0, - "x": 1012, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/hostilityresponse/flee", - "page": 0, - "x": 1038, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/hostilityresponse/ignore", - "page": 0, - "x": 1064, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/lifestage/adult", - "page": 0, - "x": 2, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/icons/lifestage/veryyoung", - "page": 0, - "x": 36, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/icons/lifestage/young", - "page": 0, - "x": 70, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/icons/medical/bandagewell", - "page": 0, - "x": 1500, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/medical/bleeding", - "page": 0, - "x": 1522, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/medical/iconimmune", - "page": 0, - "x": 1544, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/medical/nocare", - "page": 0, - "x": 104, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/medical/nomeds", - "page": 0, - "x": 134, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/medical/tendedneed", - "page": 0, - "x": 1566, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/medical/tendedwell", - "page": 0, - "x": 1588, - "y": 2, - "w": 20, - "h": 20 - }, - { - "key": "ui/icons/passionmajor", - "page": 0, - "x": 1090, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/passionmajorgray", - "page": 0, - "x": 1116, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/passionminor", - "page": 0, - "x": 1142, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/passionminorgray", - "page": 0, - "x": 1168, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/pregnant", - "page": 0, - "x": 1194, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/sorting", - "page": 0, - "x": 1610, - "y": 2, - "w": 7, - "h": 4 - }, - { - "key": "ui/icons/sortingdescending", - "page": 0, - "x": 1619, - "y": 2, - "w": 7, - "h": 4 - }, - { - "key": "ui/icons/thingcategories/animalproductraw", - "page": 0, - "x": 164, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/drugs", - "page": 0, - "x": 194, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/eggsfertilized", - "page": 0, - "x": 224, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/eggsunfertilized", - "page": 0, - "x": 254, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/foodmeals", - "page": 0, - "x": 284, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/foodraw", - "page": 0, - "x": 314, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/foods", - "page": 0, - "x": 344, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/leathers", - "page": 0, - "x": 374, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/manufactured", - "page": 0, - "x": 404, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/meatraw", - "page": 0, - "x": 434, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/medicine", - "page": 0, - "x": 464, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/plantfoodraw", - "page": 0, - "x": 494, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/plantmatter", - "page": 0, - "x": 524, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/resourcesraw", - "page": 0, - "x": 554, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/stoneblocks", - "page": 0, - "x": 584, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/stonechunks", - "page": 0, - "x": 614, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/thingcategories/textiles", - "page": 0, - "x": 644, - "y": 2, - "w": 28, - "h": 28 - }, - { - "key": "ui/icons/trainables/haul", - "page": 0, - "x": 1220, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/trainables/obedience", - "page": 0, - "x": 1246, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/trainables/release", - "page": 0, - "x": 1272, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/icons/trainables/rescue", - "page": 0, - "x": 1298, - "y": 2, - "w": 24, - "h": 24 - } - ], - "sources": [ - { - "key": "ui/icons/animal/followdrafted", - "size": 806, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/animal/followfieldwork", - "size": 746, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/animal/slaughter", - "size": 250, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/attacking", - "size": 271, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/burning", - "size": 258, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/fleeing", - "size": 258, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/idle", - "size": 292, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/medicalrest", - "size": 229, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/mentalstateaggro", - "size": 192, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/mentalstatenonaggro", - "size": 192, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/colonistbar/sleeping", - "size": 278, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/contentsources/canupload", - "size": 362, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/contentsources/localfolder", - "size": 241, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/contentsources/steamworkshop", - "size": 287, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/drugpolicy/foraddiction", - "size": 650, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/drugpolicy/forjoy", - "size": 638, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/drugpolicy/scheduled", - "size": 238, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/fixedcheck", - "size": 335, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/gender/female", - "size": 514, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/gender/genderless", - "size": 424, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/gender/male", - "size": 495, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/hostilityresponse/attack", - "size": 296, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/hostilityresponse/flee", - "size": 268, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/hostilityresponse/ignore", - "size": 298, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/lifestage/adult", - "size": 683, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/lifestage/veryyoung", - "size": 317, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/lifestage/young", - "size": 361, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/bandagewell", - "size": 335, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/bleeding", - "size": 412, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/iconimmune", - "size": 407, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/nocare", - "size": 558, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/nomeds", - "size": 846, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/tendedneed", - "size": 409, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/medical/tendedwell", - "size": 493, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/passionmajor", - "size": 311, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/passionmajorgray", - "size": 320, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/passionminor", - "size": 235, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/passionminorgray", - "size": 237, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/pregnant", - "size": 406, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/sorting", - "size": 139, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/sortingdescending", - "size": 141, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/animalproductraw", - "size": 639, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/drugs", - "size": 654, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/eggsfertilized", - "size": 633, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/eggsunfertilized", - "size": 656, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/foodmeals", - "size": 533, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/foodraw", - "size": 955, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/foods", - "size": 743, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/leathers", - "size": 778, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/manufactured", - "size": 596, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/meatraw", - "size": 813, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/medicine", - "size": 501, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/plantfoodraw", - "size": 891, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/plantmatter", - "size": 1212, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/resourcesraw", - "size": 1031, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/stoneblocks", - "size": 684, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/stonechunks", - "size": 1059, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/thingcategories/textiles", - "size": 746, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/trainables/haul", - "size": 264, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/trainables/obedience", - "size": 263, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/trainables/release", - "size": 303, - "modified": 636301600580000000 - }, - { - "key": "ui/icons/trainables/rescue", - "size": 234, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.icons.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.icons.atlas.0.png deleted file mode 100644 index 9f7ec25..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.icons.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.letters.atlas b/src/LittleSim/Assets/Atlases/ui.letters.atlas deleted file mode 100644 index d051189..0000000 --- a/src/LittleSim/Assets/Atlases/ui.letters.atlas +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": 2, - "name": "ui.letters", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.letters.atlas.0.png", - "width": 128, - "height": 64 - } - ], - "regions": [ - { - "key": "ui/letters/customchoiceletter", - "page": 0, - "x": 2, - "y": 2, - "w": 38, - "h": 30 - }, - { - "key": "ui/letters/letterunopened", - "page": 0, - "x": 42, - "y": 2, - "w": 38, - "h": 30 - } - ], - "sources": [ - { - "key": "ui/letters/customchoiceletter", - "size": 250, - "modified": 636301600580000000 - }, - { - "key": "ui/letters/letterunopened", - "size": 272, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.letters.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.letters.atlas.0.png deleted file mode 100644 index 99ac4e5..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.letters.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.misc.atlas b/src/LittleSim/Assets/Atlases/ui.misc.atlas deleted file mode 100644 index e1c3178..0000000 --- a/src/LittleSim/Assets/Atlases/ui.misc.atlas +++ /dev/null @@ -1,134 +0,0 @@ -{ - "version": 2, - "name": "ui.misc", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.misc.atlas.0.png", - "width": 1024, - "height": 512 - } - ], - "regions": [ - { - "key": "ui/misc/alertflasharrow", - "page": 0, - "x": 759, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/misc/badtexture", - "page": 0, - "x": 518, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/misc/barinstantmarker", - "page": 0, - "x": 793, - "y": 2, - "w": 16, - "h": 16 - }, - { - "key": "ui/misc/barinstantmarkerrotated", - "page": 0, - "x": 811, - "y": 2, - "w": 16, - "h": 16 - }, - { - "key": "ui/misc/compass", - "page": 0, - "x": 584, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/misc/deadcolonist", - "page": 0, - "x": 650, - "y": 2, - "w": 48, - "h": 48 - }, - { - "key": "ui/misc/flash", - "page": 0, - "x": 2, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "ui/misc/screencornershadow", - "page": 0, - "x": 260, - "y": 2, - "w": 256, - "h": 256 - }, - { - "key": "ui/misc/worldrouteplanner", - "page": 0, - "x": 700, - "y": 2, - "w": 57, - "h": 33 - } - ], - "sources": [ - { - "key": "ui/misc/alertflasharrow", - "size": 552, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/badtexture", - "size": 1107, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/barinstantmarker", - "size": 210, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/barinstantmarkerrotated", - "size": 207, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/compass", - "size": 1232, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/deadcolonist", - "size": 573, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/flash", - "size": 41159, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/screencornershadow", - "size": 17492, - "modified": 636301600580000000 - }, - { - "key": "ui/misc/worldrouteplanner", - "size": 1258, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.misc.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.misc.atlas.0.png deleted file mode 100644 index 8b2757e..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.misc.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.overlays.atlas b/src/LittleSim/Assets/Atlases/ui.overlays.atlas deleted file mode 100644 index e4e65c1..0000000 --- a/src/LittleSim/Assets/Atlases/ui.overlays.atlas +++ /dev/null @@ -1,342 +0,0 @@ -{ - "version": 2, - "name": "ui.overlays", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.overlays.atlas.0.png", - "width": 2048, - "height": 256 - } - ], - "regions": [ - { - "key": "ui/overlays/NeedsPower", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "ui/overlays/arrow", - "page": 0, - "x": 262, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/brokendown", - "page": 0, - "x": 1318, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/overlays/designatedgenerictex", - "page": 0, - "x": 328, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/draghighlightcell", - "page": 0, - "x": 394, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/fuelingport", - "page": 0, - "x": 460, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/graytextbg", - "page": 0, - "x": 1522, - "y": 2, - "w": 256, - "h": 8 - }, - { - "key": "ui/overlays/interactioncell", - "page": 0, - "x": 526, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/launchablemouseattachment", - "page": 0, - "x": 1352, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/overlays/locked", - "page": 0, - "x": 1386, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/overlays/mouseoverbrackettex", - "page": 0, - "x": 592, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/onesidedline", - "page": 0, - "x": 658, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/outoffuel", - "page": 0, - "x": 1420, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/overlays/poweroff", - "page": 0, - "x": 1454, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/overlays/questionmark", - "page": 0, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "ui/overlays/reserveddestination", - "page": 0, - "x": 724, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/reserveddestinationselection", - "page": 0, - "x": 790, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/reservedforwork", - "page": 0, - "x": 856, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/selectionbracket", - "page": 0, - "x": 922, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/selectionbracketgui", - "page": 0, - "x": 988, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/squadflag", - "page": 0, - "x": 1054, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/targethighlight_side", - "page": 0, - "x": 1120, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/targethighlight_square", - "page": 0, - "x": 1186, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/thingline", - "page": 0, - "x": 1252, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/overlays/waypointmouseattachment", - "page": 0, - "x": 1488, - "y": 2, - "w": 32, - "h": 32 - } - ], - "sources": [ - { - "key": "ui/overlays/NeedsPower", - "size": 5284, - "modified": 638886166560000000 - }, - { - "key": "ui/overlays/arrow", - "size": 1025, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/brokendown", - "size": 761, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/designatedgenerictex", - "size": 408, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/draghighlightcell", - "size": 450, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/fuelingport", - "size": 1712, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/graytextbg", - "size": 1705, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/interactioncell", - "size": 1122, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/launchablemouseattachment", - "size": 661, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/locked", - "size": 763, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/mouseoverbrackettex", - "size": 409, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/onesidedline", - "size": 498, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/outoffuel", - "size": 1070, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/poweroff", - "size": 662, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/questionmark", - "size": 3644, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/reserveddestination", - "size": 606, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/reserveddestinationselection", - "size": 1220, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/reservedforwork", - "size": 592, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/selectionbracket", - "size": 439, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/selectionbracketgui", - "size": 439, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/squadflag", - "size": 1658, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/targethighlight_side", - "size": 840, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/targethighlight_square", - "size": 1656, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/thingline", - "size": 1611, - "modified": 636301600580000000 - }, - { - "key": "ui/overlays/waypointmouseattachment", - "size": 514, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.overlays.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.overlays.atlas.0.png deleted file mode 100644 index 49ebd72..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.overlays.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas b/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas deleted file mode 100644 index 630a04d..0000000 --- a/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas +++ /dev/null @@ -1,69 +0,0 @@ -{ - "version": 2, - "name": "ui.timecontrols", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.timecontrols.atlas.0.png", - "width": 256, - "height": 32 - } - ], - "regions": [ - { - "key": "ui/timecontrols/timespeedbutton_fast", - "page": 0, - "x": 2, - "y": 2, - "w": 32, - "h": 24 - }, - { - "key": "ui/timecontrols/timespeedbutton_normal", - "page": 0, - "x": 36, - "y": 2, - "w": 32, - "h": 24 - }, - { - "key": "ui/timecontrols/timespeedbutton_pause", - "page": 0, - "x": 70, - "y": 2, - "w": 32, - "h": 24 - }, - { - "key": "ui/timecontrols/timespeedbutton_superfast", - "page": 0, - "x": 104, - "y": 2, - "w": 32, - "h": 24 - } - ], - "sources": [ - { - "key": "ui/timecontrols/timespeedbutton_fast", - "size": 361, - "modified": 636301600580000000 - }, - { - "key": "ui/timecontrols/timespeedbutton_normal", - "size": 328, - "modified": 636301600580000000 - }, - { - "key": "ui/timecontrols/timespeedbutton_pause", - "size": 296, - "modified": 636301600580000000 - }, - { - "key": "ui/timecontrols/timespeedbutton_superfast", - "size": 315, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas.0.png deleted file mode 100644 index babbecc..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.timecontrols.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/ui.widgets.atlas b/src/LittleSim/Assets/Atlases/ui.widgets.atlas deleted file mode 100644 index e1761c0..0000000 --- a/src/LittleSim/Assets/Atlases/ui.widgets.atlas +++ /dev/null @@ -1,498 +0,0 @@ -{ - "version": 2, - "name": "ui.widgets", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "ui.widgets.atlas.0.png", - "width": 2048, - "height": 128 - } - ], - "regions": [ - { - "key": "ui/widgets/arrowleft", - "page": 0, - "x": 967, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/arrowright", - "page": 0, - "x": 1001, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/baremptyhor", - "page": 0, - "x": 816, - "y": 2, - "w": 1, - "h": 64 - }, - { - "key": "ui/widgets/barfullhor", - "page": 0, - "x": 819, - "y": 2, - "w": 1, - "h": 64 - }, - { - "key": "ui/widgets/buttonbg", - "page": 0, - "x": 156, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/buttonbgclick", - "page": 0, - "x": 222, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/buttonbgmouseover", - "page": 0, - "x": 288, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/buttonsubtleatlas", - "page": 0, - "x": 354, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/checkoff", - "page": 0, - "x": 1340, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/checkon", - "page": 0, - "x": 1366, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/checkpartial", - "page": 0, - "x": 1392, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/closex", - "page": 0, - "x": 1418, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/closexsmall", - "page": 0, - "x": 1496, - "y": 2, - "w": 18, - "h": 18 - }, - { - "key": "ui/widgets/desbutbg", - "page": 0, - "x": 2, - "y": 2, - "w": 75, - "h": 75 - }, - { - "key": "ui/widgets/desbutbg2", - "page": 0, - "x": 79, - "y": 2, - "w": 75, - "h": 75 - }, - { - "key": "ui/widgets/dev/curvepoint", - "page": 0, - "x": 1516, - "y": 2, - "w": 12, - "h": 12 - }, - { - "key": "ui/widgets/dropshadow", - "page": 0, - "x": 420, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/fillchangearrowleft", - "page": 0, - "x": 1035, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/fillchangearrowright", - "page": 0, - "x": 1069, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/floatmenuoptionbg", - "page": 0, - "x": 486, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/nextarrow", - "page": 0, - "x": 1444, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/radiobutoff", - "page": 0, - "x": 1103, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/radiobuton", - "page": 0, - "x": 1137, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/rangeslider", - "page": 0, - "x": 1171, - "y": 2, - "w": 32, - "h": 32 - }, - { - "key": "ui/widgets/rotleft", - "page": 0, - "x": 552, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/rotright", - "page": 0, - "x": 618, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/tabatlas", - "page": 0, - "x": 901, - "y": 2, - "w": 64, - "h": 32 - }, - { - "key": "ui/widgets/textbgblack", - "page": 0, - "x": 1530, - "y": 2, - "w": 128, - "h": 4 - }, - { - "key": "ui/widgets/tooltipbg", - "page": 0, - "x": 684, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/tradearrow", - "page": 0, - "x": 822, - "y": 2, - "w": 77, - "h": 32 - }, - { - "key": "ui/widgets/tutorhighlightatlas", - "page": 0, - "x": 750, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "ui/widgets/winexpandwidget", - "page": 0, - "x": 1470, - "y": 2, - "w": 24, - "h": 24 - }, - { - "key": "ui/widgets/workboxbg_awful", - "page": 0, - "x": 1205, - "y": 2, - "w": 25, - "h": 25 - }, - { - "key": "ui/widgets/workboxbg_bad", - "page": 0, - "x": 1232, - "y": 2, - "w": 25, - "h": 25 - }, - { - "key": "ui/widgets/workboxbg_excellent", - "page": 0, - "x": 1259, - "y": 2, - "w": 25, - "h": 25 - }, - { - "key": "ui/widgets/workboxbg_mid", - "page": 0, - "x": 1286, - "y": 2, - "w": 25, - "h": 25 - }, - { - "key": "ui/widgets/workboxcheck", - "page": 0, - "x": 1313, - "y": 2, - "w": 25, - "h": 25 - } - ], - "sources": [ - { - "key": "ui/widgets/arrowleft", - "size": 527, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/arrowright", - "size": 552, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/baremptyhor", - "size": 229, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/barfullhor", - "size": 248, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/buttonbg", - "size": 291, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/buttonbgclick", - "size": 282, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/buttonbgmouseover", - "size": 293, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/buttonsubtleatlas", - "size": 489, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/checkoff", - "size": 298, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/checkon", - "size": 270, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/checkpartial", - "size": 286, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/closex", - "size": 298, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/closexsmall", - "size": 233, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/desbutbg", - "size": 3983, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/desbutbg2", - "size": 3418, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/dev/curvepoint", - "size": 185, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/dropshadow", - "size": 3581, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/fillchangearrowleft", - "size": 781, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/fillchangearrowright", - "size": 788, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/floatmenuoptionbg", - "size": 281, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/nextarrow", - "size": 269, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/radiobutoff", - "size": 567, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/radiobuton", - "size": 711, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/rangeslider", - "size": 408, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/rotleft", - "size": 2360, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/rotright", - "size": 2365, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/tabatlas", - "size": 883, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/textbgblack", - "size": 302, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/tooltipbg", - "size": 266, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/tradearrow", - "size": 807, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/tutorhighlightatlas", - "size": 4096, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/winexpandwidget", - "size": 246, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/workboxbg_awful", - "size": 470, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/workboxbg_bad", - "size": 160, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/workboxbg_excellent", - "size": 581, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/workboxbg_mid", - "size": 483, - "modified": 636301600580000000 - }, - { - "key": "ui/widgets/workboxcheck", - "size": 261, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/ui.widgets.atlas.0.png b/src/LittleSim/Assets/Atlases/ui.widgets.atlas.0.png deleted file mode 100644 index 262d908..0000000 Binary files a/src/LittleSim/Assets/Atlases/ui.widgets.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/weather.atlas b/src/LittleSim/Assets/Atlases/weather.atlas deleted file mode 100644 index 0cdf729..0000000 --- a/src/LittleSim/Assets/Atlases/weather.atlas +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 2, - "name": "weather", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "weather.atlas.0.png", - "width": 256, - "height": 1024 - } - ], - "regions": [ - { - "key": "weather/lightningbolt", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 512 - } - ], - "sources": [ - { - "key": "weather/lightningbolt", - "size": 52227, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/weather.atlas.0.png b/src/LittleSim/Assets/Atlases/weather.atlas.0.png deleted file mode 100644 index 18debc5..0000000 Binary files a/src/LittleSim/Assets/Atlases/weather.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/weather.overlays.atlas b/src/LittleSim/Assets/Atlases/weather.overlays.atlas deleted file mode 100644 index fe2761d..0000000 --- a/src/LittleSim/Assets/Atlases/weather.overlays.atlas +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": 2, - "name": "weather.overlays", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "weather.overlays.atlas.0.png", - "width": 2048, - "height": 1024 - } - ], - "regions": [ - { - "key": "weather/overlays/fogworld", - "page": 0, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "weather/overlays/rainworldoverlay", - "page": 0, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "weather/overlays/snowworldoverlay", - "page": 0, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - } - ], - "sources": [ - { - "key": "weather/overlays/fogworld", - "size": 186541, - "modified": 636301600580000000 - }, - { - "key": "weather/overlays/rainworldoverlay", - "size": 130236, - "modified": 636301600580000000 - }, - { - "key": "weather/overlays/snowworldoverlay", - "size": 10714, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/weather.overlays.atlas.0.png b/src/LittleSim/Assets/Atlases/weather.overlays.atlas.0.png deleted file mode 100644 index d265561..0000000 Binary files a/src/LittleSim/Assets/Atlases/weather.overlays.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/world.atlas b/src/LittleSim/Assets/Atlases/world.atlas deleted file mode 100644 index 9a93916..0000000 --- a/src/LittleSim/Assets/Atlases/world.atlas +++ /dev/null @@ -1,82 +0,0 @@ -{ - "version": 2, - "name": "world", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "world.atlas.0.png", - "width": 2048, - "height": 2048 - } - ], - "regions": [ - { - "key": "world/currentmaptile", - "page": 0, - "x": 1286, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "world/mousetile", - "page": 0, - "x": 1352, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "world/selectedtile", - "page": 0, - "x": 1418, - "y": 2, - "w": 64, - "h": 64 - }, - { - "key": "world/stars", - "page": 0, - "x": 2, - "y": 2, - "w": 1024, - "h": 1024 - }, - { - "key": "world/worldmacro", - "page": 0, - "x": 1028, - "y": 2, - "w": 256, - "h": 256 - } - ], - "sources": [ - { - "key": "world/currentmaptile", - "size": 3060, - "modified": 636301600580000000 - }, - { - "key": "world/mousetile", - "size": 1051, - "modified": 636301600580000000 - }, - { - "key": "world/selectedtile", - "size": 1731, - "modified": 636301600580000000 - }, - { - "key": "world/stars", - "size": 13350, - "modified": 636301600580000000 - }, - { - "key": "world/worldmacro", - "size": 32004, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/world.atlas.0.png b/src/LittleSim/Assets/Atlases/world.atlas.0.png deleted file mode 100644 index 4495410..0000000 Binary files a/src/LittleSim/Assets/Atlases/world.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/world.biomes.atlas b/src/LittleSim/Assets/Atlases/world.biomes.atlas deleted file mode 100644 index de920d0..0000000 --- a/src/LittleSim/Assets/Atlases/world.biomes.atlas +++ /dev/null @@ -1,152 +0,0 @@ -{ - "version": 2, - "name": "world.biomes", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "world.biomes.atlas.0.png", - "width": 2048, - "height": 2048 - }, - { - "file": "world.biomes.atlas.1.png", - "width": 1024, - "height": 1024 - } - ], - "regions": [ - { - "key": "world/biomes/aridshrubland", - "page": 0, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/borealforest", - "page": 0, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/desert", - "page": 0, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/extremedesert", - "page": 0, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/icesheet", - "page": 0, - "x": 516, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/icesheetocean", - "page": 0, - "x": 1030, - "y": 516, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/ocean", - "page": 0, - "x": 2, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/temperateforest", - "page": 0, - "x": 516, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/tropicalrainforest", - "page": 0, - "x": 1030, - "y": 1030, - "w": 512, - "h": 512 - }, - { - "key": "world/biomes/tundra", - "page": 1, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - } - ], - "sources": [ - { - "key": "world/biomes/aridshrubland", - "size": 177465, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/borealforest", - "size": 176035, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/desert", - "size": 187292, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/extremedesert", - "size": 209815, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/icesheet", - "size": 196826, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/icesheetocean", - "size": 181431, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/ocean", - "size": 146142, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/temperateforest", - "size": 194385, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/tropicalrainforest", - "size": 185790, - "modified": 636301600580000000 - }, - { - "key": "world/biomes/tundra", - "size": 199428, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/world.biomes.atlas.0.png b/src/LittleSim/Assets/Atlases/world.biomes.atlas.0.png deleted file mode 100644 index 23c4d1a..0000000 Binary files a/src/LittleSim/Assets/Atlases/world.biomes.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/world.biomes.atlas.1.png b/src/LittleSim/Assets/Atlases/world.biomes.atlas.1.png deleted file mode 100644 index 357302d..0000000 Binary files a/src/LittleSim/Assets/Atlases/world.biomes.atlas.1.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/world.hills.atlas b/src/LittleSim/Assets/Atlases/world.hills.atlas deleted file mode 100644 index 3515117..0000000 --- a/src/LittleSim/Assets/Atlases/world.hills.atlas +++ /dev/null @@ -1,69 +0,0 @@ -{ - "version": 2, - "name": "world.hills", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "world.hills.atlas.0.png", - "width": 2048, - "height": 2048 - } - ], - "regions": [ - { - "key": "world/hills/impassable", - "page": 0, - "x": 2, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/hills/largehills", - "page": 0, - "x": 516, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/hills/mountains", - "page": 0, - "x": 1030, - "y": 2, - "w": 512, - "h": 512 - }, - { - "key": "world/hills/smallhills", - "page": 0, - "x": 2, - "y": 516, - "w": 512, - "h": 512 - } - ], - "sources": [ - { - "key": "world/hills/impassable", - "size": 143130, - "modified": 636301600580000000 - }, - { - "key": "world/hills/largehills", - "size": 65369, - "modified": 636301600580000000 - }, - { - "key": "world/hills/mountains", - "size": 92599, - "modified": 636301600580000000 - }, - { - "key": "world/hills/smallhills", - "size": 30472, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/world.hills.atlas.0.png b/src/LittleSim/Assets/Atlases/world.hills.atlas.0.png deleted file mode 100644 index 948c5ec..0000000 Binary files a/src/LittleSim/Assets/Atlases/world.hills.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Assets/Atlases/world.worldobjects.atlas b/src/LittleSim/Assets/Atlases/world.worldobjects.atlas deleted file mode 100644 index 2498e0a..0000000 --- a/src/LittleSim/Assets/Atlases/world.worldobjects.atlas +++ /dev/null @@ -1,498 +0,0 @@ -{ - "version": 2, - "name": "world.worldobjects", - "pageSize": 2048, - "padding": 2, - "pages": [ - { - "file": "world.worldobjects.atlas.0.png", - "width": 2048, - "height": 512 - } - ], - "regions": [ - { - "key": "world/worldobjects/ambush", - "page": 0, - "x": 132, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/caravan", - "page": 0, - "x": 198, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/defaultfactionbase", - "page": 0, - "x": 264, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/CannibalPirate", - "page": 0, - "x": 2, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/CannibalTribe", - "page": 0, - "x": 132, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/FierceNeanderthalTribe", - "page": 0, - "x": 262, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/Insects", - "page": 0, - "x": 392, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/Mechanoids", - "page": 0, - "x": 522, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/NudistTribe", - "page": 0, - "x": 652, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/PirateOutpost", - "page": 0, - "x": 782, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/RoughPigUnion", - "page": 0, - "x": 912, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/SavageImpidTribe", - "page": 0, - "x": 1042, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/Town", - "page": 0, - "x": 1172, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/TownRough", - "page": 0, - "x": 1302, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/Village", - "page": 0, - "x": 1432, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/VillageRough", - "page": 0, - "x": 1562, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/VillageSavage", - "page": 0, - "x": 1692, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/WasterPirates", - "page": 0, - "x": 1822, - "y": 2, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/YttakinPirates", - "page": 0, - "x": 2, - "y": 132, - "w": 128, - "h": 128 - }, - { - "key": "world/worldobjects/expanding/ambush", - "page": 0, - "x": 330, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/caravan", - "page": 0, - "x": 396, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/destroyedfactionbase", - "page": 0, - "x": 462, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/journeydestination", - "page": 0, - "x": 528, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/routeplannerwaypoint", - "page": 0, - "x": 594, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/itemstash", - "page": 0, - "x": 660, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/manhunters", - "page": 0, - "x": 726, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/nothing", - "page": 0, - "x": 792, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/outpost", - "page": 0, - "x": 858, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/preciouslump", - "page": 0, - "x": 924, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/sites/turrets", - "page": 0, - "x": 990, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/expanding/travelingtransportpods", - "page": 0, - "x": 1056, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/journeydestination", - "page": 0, - "x": 1122, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/routeplannerwaypoint", - "page": 0, - "x": 1188, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/sites/genericsite", - "page": 0, - "x": 1254, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/sites/outpost", - "page": 0, - "x": 1320, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/travelingtransportpods", - "page": 0, - "x": 1386, - "y": 132, - "w": 64, - "h": 64 - }, - { - "key": "world/worldobjects/tribalfactionbase", - "page": 0, - "x": 1452, - "y": 132, - "w": 64, - "h": 64 - } - ], - "sources": [ - { - "key": "world/worldobjects/ambush", - "size": 1730, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/caravan", - "size": 1018, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/defaultfactionbase", - "size": 1785, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/CannibalPirate", - "size": 7310, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/CannibalTribe", - "size": 6202, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/FierceNeanderthalTribe", - "size": 6185, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/Insects", - "size": 7258, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/Mechanoids", - "size": 6603, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/NudistTribe", - "size": 5653, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/PirateOutpost", - "size": 3356, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/RoughPigUnion", - "size": 5826, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/SavageImpidTribe", - "size": 6423, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/Town", - "size": 1267, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/TownRough", - "size": 1487, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/Village", - "size": 1485, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/VillageRough", - "size": 1863, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/VillageSavage", - "size": 1765, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/WasterPirates", - "size": 7462, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/YttakinPirates", - "size": 7082, - "modified": 638886166560000000 - }, - { - "key": "world/worldobjects/expanding/ambush", - "size": 2385, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/caravan", - "size": 389, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/destroyedfactionbase", - "size": 2382, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/journeydestination", - "size": 514, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/routeplannerwaypoint", - "size": 1283, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/itemstash", - "size": 1404, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/manhunters", - "size": 2694, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/nothing", - "size": 762, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/outpost", - "size": 1706, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/preciouslump", - "size": 509, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/sites/turrets", - "size": 1701, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/expanding/travelingtransportpods", - "size": 2496, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/journeydestination", - "size": 2425, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/routeplannerwaypoint", - "size": 2574, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/sites/genericsite", - "size": 1142, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/sites/outpost", - "size": 1195, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/travelingtransportpods", - "size": 1114, - "modified": 636301600580000000 - }, - { - "key": "world/worldobjects/tribalfactionbase", - "size": 874, - "modified": 636301600580000000 - } - ] -} \ No newline at end of file diff --git a/src/LittleSim/Assets/Atlases/world.worldobjects.atlas.0.png b/src/LittleSim/Assets/Atlases/world.worldobjects.atlas.0.png deleted file mode 100644 index def27b0..0000000 Binary files a/src/LittleSim/Assets/Atlases/world.worldobjects.atlas.0.png and /dev/null differ diff --git a/src/LittleSim/Content/GameContent.cs b/src/LittleSim/Content/GameContent.cs new file mode 100644 index 0000000..407f723 --- /dev/null +++ b/src/LittleSim/Content/GameContent.cs @@ -0,0 +1,75 @@ +using MrGameEng.Atlases; +using MrGameEng.Core; +using MrGameEng.Mods; + +namespace LittleSim.Content; + +/// +/// Загруженный контент модов: список модов, дефы, локализация и кэш атласов. +/// Создаётся в Program до открытия окна (чистый CPU) и регистрируется сервисом — +/// сцены берут его из Context.Services. +/// +public sealed class GameContent +{ + private GameContent( + IReadOnlyList mods, + DefDatabase defs, + LanguageManager languages, + TerrainSet terrains, + string atlasCacheDirectory) + { + Mods = mods; + Defs = defs; + Languages = languages; + Terrains = terrains; + AtlasCacheDirectory = atlasCacheDirectory; + } + + /// Активные моды в порядке загрузки. + public IReadOnlyList Mods { get; } + + /// База дефов (Terrain/Plant/Pawn). + public DefDatabase Defs { get; } + + /// Локализация интерфейса. + public LanguageManager Languages { get; } + + /// Дефы рельефа, готовые к классификации по высоте. + public TerrainSet Terrains { get; } + + /// Директория собранных атласов (кормит ). + public string AtlasCacheDirectory { get; } + + /// + /// Находит папку Mods (вверх по дереву от исполняемого файла), загружает моды, дефы и + /// языки и инкрементально собирает атласы из смерженного дерева текстур всех модов. + /// + public static GameContent Load() + { + var modsRoot = ModLoader.FindModsRoot(AppContext.BaseDirectory) + ?? throw new DirectoryNotFoundException( + "Папка Mods не найдена ни рядом с игрой, ни выше по дереву каталогов."); + var mods = ModLoader.Load(modsRoot); + + var defs = new DefDatabase(); + defs.RegisterType("Terrain"); + defs.RegisterType("Plant"); + defs.RegisterType("Pawn"); + defs.Load(mods); + + var languages = new LanguageManager(defaultLanguage: "ru"); + languages.Load(mods); + + // Текстуры поздних модов переопределяют ранние по относительному пути; + // сборка инкрементальная — без изменений старт мгновенный. + var atlasCacheDirectory = Path.Combine(Path.GetDirectoryName(modsRoot)!, "Cache", "Atlases"); + var textures = ModContentTree.Build(mods, "Textures", ".png", ".jpg", ".jpeg", ".bmp"); + var result = AtlasBuilder.Build( + new AtlasBuildOptions { OutputDirectory = atlasCacheDirectory, GroupDepth = ModAtlases.GroupDepth }, + textures.Files.Select(f => (f.FullPath, f.RelativePath))); + var built = result.Groups.Count(g => !g.Skipped); + Log.Info($"Atlases: {built} built, {result.Groups.Count - built} up to date ({result.Groups.Count} total)"); + + return new GameContent(mods, defs, languages, new TerrainSet(defs.All()), atlasCacheDirectory); + } +} diff --git a/src/LittleSim/Content/GameDefs.cs b/src/LittleSim/Content/GameDefs.cs new file mode 100644 index 0000000..78d0446 --- /dev/null +++ b/src/LittleSim/Content/GameDefs.cs @@ -0,0 +1,70 @@ +using System.Text.Json.Serialization; +using Microsoft.Xna.Framework; +using MrGameEng.Mods; + +namespace LittleSim.Content; + +/// Запись скаттера: с вероятностью на клетку ставится одно растение из . +public sealed class ScatterEntry +{ + /// Вероятность на клетку (0..1); записи бросаются независимо. + public float Chance { get; init; } + + /// Имена , из которых выбирается равновероятно. + public List Options { get; init; } = []; +} + +/// Тип клетки рельефа (Defs/terrain.json): порог высоты, цвет, поверхность, скаттер растений. +public sealed class TerrainDef : Def +{ + /// Верхняя граница высоты (клетка относится к первому дефу, чей порог выше её высоты). + public float MaxHeight { get; init; } + + /// Цвет клетки [r, g, b] для сцен с тонированными квадратами и тайлов без поверхности. + [JsonPropertyName("color")] + public List Rgb { get; init; } = []; + + /// Суша: здесь появляются жители, животные и растения. + public bool IsLand { get; init; } + + /// Ключ текстуры поверхности для тайловой сцены; null — тонированный тайл. + public string? Surface { get; init; } + + /// Растительность, рассыпаемая по клеткам этого террейна. + public List Scatter { get; init; } = []; + + /// Цвет тонировки из . + public Color Tint => Rgb is [var r, var g, var b, ..] ? new(r, g, b) : Color.Magenta; +} + +/// Растение (Defs/plants.json): текстура, размер, опциональный ствол-препятствие. +public sealed class PlantDef : Def +{ + /// Ключ текстуры (путь региона в атласах). + public string Texture { get; init; } = ""; + + /// Размер спрайта в клетках. + public float SizeCells { get; init; } = 1f; + + /// Радиус коллайдера ствола в клетках; 0 — без коллайдера (трава, кусты). + public float TrunkRadiusCells { get; init; } +} + +/// Существо (Defs/pawns.json): текстура, размер и вид (житель/животное). +public sealed class PawnDef : Def +{ + /// Вид существа: жители ("being") живут в мировой сцене, животные ("animal") — в террейне. + public const string KindBeing = "being"; + + /// Вид животного. + public const string KindAnimal = "animal"; + + /// Ключ текстуры (путь региона в атласах). + public string Texture { get; init; } = ""; + + /// Размер спрайта в клетках. + public float SizeCells { get; init; } = 1f; + + /// Вид: или . + public string Kind { get; init; } = ""; +} diff --git a/src/LittleSim/Content/ModAtlases.cs b/src/LittleSim/Content/ModAtlases.cs new file mode 100644 index 0000000..ccf912b --- /dev/null +++ b/src/LittleSim/Content/ModAtlases.cs @@ -0,0 +1,59 @@ +using Microsoft.Xna.Framework.Graphics; +using MrGameEng.Atlases; +using MrGameEng.Graphics; + +namespace LittleSim.Content; + +/// +/// Лениво загружает атласы из кэша, собранного , и владеет +/// их текстурами. Регистрируется сервисом — реестр освобождает его при выходе из игры. +/// +public sealed class ModAtlases : IDisposable +{ + /// Глубина группировки атласов (сегментов пути в имени атласа) — общая для сборки и поиска. + public const int GroupDepth = 2; + + private readonly string _directory; + private readonly Dictionary _loaded = new(StringComparer.OrdinalIgnoreCase); + + /// Создаёт реестр над кэш-директорией атласов. + public ModAtlases(string directory) => _directory = directory; + + /// Уже загруженные атласы по имени. + public IReadOnlyDictionary Loaded => _loaded; + + /// Атлас по имени (например, "things.plant"); загружается при первом обращении. + public TextureAtlas Get(GraphicsDevice device, string name) + { + if (!_loaded.TryGetValue(name, out var atlas)) + { + atlas = TextureAtlas.Load(device, Path.Combine(_directory, name + ".atlas")); + _loaded.Add(name, atlas); + } + + return atlas; + } + + /// + /// Регион по ключу текстуры: имя атласа — первые сегментов + /// пути (как при сборке), ключ региона — весь путь. + /// + public Texture2DRegion GetRegion(GraphicsDevice device, string textureKey) + { + var segments = textureKey.Split('/'); + var depth = Math.Min(GroupDepth, segments.Length - 1); + var name = depth == 0 ? "Atlas" : string.Join('.', segments[..depth]); + return Get(device, name).GetRegion(textureKey); + } + + /// + public void Dispose() + { + foreach (var atlas in _loaded.Values) + { + atlas.Dispose(); + } + + _loaded.Clear(); + } +} diff --git a/src/LittleSim/Content/TerrainSet.cs b/src/LittleSim/Content/TerrainSet.cs new file mode 100644 index 0000000..fa07535 --- /dev/null +++ b/src/LittleSim/Content/TerrainSet.cs @@ -0,0 +1,35 @@ +namespace LittleSim.Content; + +/// Дефы рельефа, отсортированные по порогу высоты: классификация клетки за один проход. +public sealed class TerrainSet +{ + private readonly TerrainDef[] _byHeight; + + /// Создаёт набор из дефов; пустой список — ошибка загрузки Core-мода. + public TerrainSet(IReadOnlyList defs) + { + if (defs.Count == 0) + { + throw new InvalidDataException("Не загружен ни один TerrainDef — отсутствует Core-мод?"); + } + + _byHeight = defs.OrderBy(d => d.MaxHeight).ToArray(); + } + + /// Все дефы по возрастанию порога. + public IReadOnlyList All => _byHeight; + + /// Деф клетки по высоте: первый, чей порог выше; выше всех порогов — последний. + public TerrainDef Classify(float height) + { + foreach (var def in _byHeight) + { + if (height < def.MaxHeight) + { + return def; + } + } + + return _byHeight[^1]; + } +} diff --git a/src/LittleSim/LittleSim.csproj b/src/LittleSim/LittleSim.csproj index 5bf4459..0c910ec 100644 --- a/src/LittleSim/LittleSim.csproj +++ b/src/LittleSim/LittleSim.csproj @@ -17,6 +17,7 @@ + diff --git a/src/LittleSim/Program.cs b/src/LittleSim/Program.cs index c41d89b..311c12c 100644 --- a/src/LittleSim/Program.cs +++ b/src/LittleSim/Program.cs @@ -1,7 +1,11 @@ +using LittleSim.Content; using LittleSim.Scenes; using Microsoft.Xna.Framework; using MrGameEng.Core; +// Контент модов (дефы, локализация, атласы) загружается до создания окна — чистый CPU. +var content = GameContent.Load(); + using var host = new GameHost( new GameHostOptions { @@ -12,6 +16,7 @@ using var host = new GameHost( }, new WorldScene(seed: 1337)); +host.Context.Services.Add(content); +host.Context.Services.Add(new ModAtlases(content.AtlasCacheDirectory)); + host.Run(); - - diff --git a/src/LittleSim/Scenes/ContentHelpers.cs b/src/LittleSim/Scenes/ContentHelpers.cs new file mode 100644 index 0000000..0d38413 --- /dev/null +++ b/src/LittleSim/Scenes/ContentHelpers.cs @@ -0,0 +1,144 @@ +using Friflo.Engine.ECS; +using LittleSim.Content; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Graphics; +using MrGameEng.Core; +using MrGameEng.DevConsole; +using MrGameEng.Graphics; + +namespace LittleSim.Scenes; + +/// Спавн растительности по скаттеру дефов террейна (общий для обеих сцен). +internal static class ScatterSpawner +{ + /// + /// Бросает каждую запись скаттера клетки независимо; при успехе ставит одно растение + /// со случайным смещением. Деревья (ствол > 0) получают коллайдер-препятствие, + /// когда заданы слои коллизий. + /// + public static void Spawn( + Scene scene, GameContent content, ModAtlases atlases, GraphicsDevice device, + TerrainDef terrain, Point cell, int cellSize, Random random, + uint obstacleLayer = 0, uint collidesWith = 0) + { + foreach (var entry in terrain.Scatter) + { + if (entry.Options.Count == 0 || random.NextSingle() >= entry.Chance) + { + continue; + } + + var plant = content.Defs.Get(entry.Options[random.Next(entry.Options.Count)]); + var region = atlases.GetRegion(device, plant.Texture); + var sprite = new Sprite(region, GameLayers.Beings); + sprite.CenterOrigin(); + var entity = scene.Store.CreateEntity( + new Transform2D( + new Vector2( + (cell.X + 0.3f + random.NextSingle() * 0.4f) * cellSize, + (cell.Y + 0.3f + random.NextSingle() * 0.4f) * cellSize), + scale: new Vector2(cellSize * plant.SizeCells / region.Width)), + sprite); + + if (obstacleLayer != 0 && plant.TrunkRadiusCells > 0f) + { + var trunk = MrGameEng.Collisions.Collider.Circle(cellSize * plant.TrunkRadiusCells); + trunk.Layer = obstacleLayer; + trunk.CollidesWith = collidesWith; + entity.AddComponent(trunk); + } + } + } +} + +/// Консольные команды контента: моды, язык, дефы, атласы (общие для сцен). +internal static class ContentCommands +{ + /// Регистрирует (или перерегистрирует) команды контента на общей консоли. + public static void Register(DevConsole console, GameContent content, ModAtlases atlases) + { + console.Register("mods", "mods — list active mods in load order", (c, _) => + { + foreach (var mod in content.Mods) + { + c.WriteLine($" {mod.Id} {mod.Info.Version} — {mod.Info.Name}"); + } + + c.WriteLine($"{content.Mods.Count} mod(s)"); + }); + + console.Register("lang", "lang [code] — show or switch the UI language", (c, args) => + { + if (args.Length == 0) + { + c.WriteLine( + $"language: {content.Languages.CurrentLanguage} " + + $"(available: {string.Join(", ", content.Languages.AvailableLanguages)})"); + return; + } + + c.WriteLine(content.Languages.SetLanguage(args[0]) + ? $"language set to {content.Languages.CurrentLanguage}" + : $"unknown language '{args[0]}'; available: {string.Join(", ", content.Languages.AvailableLanguages)}"); + }); + + console.Register("defs", "defs [type] — list def types or defs of one type", (c, args) => + { + if (args.Length == 0) + { + foreach (var typeKey in content.Defs.TypeKeys) + { + c.WriteLine($" {typeKey}: {content.Defs.NamesOf(typeKey).Count} def(s)"); + } + + return; + } + + var names = content.Defs.NamesOf(args[0]); + if (names.Count == 0) + { + c.WriteLine($"no defs of type '{args[0]}'; types: {string.Join(", ", content.Defs.TypeKeys)}"); + return; + } + + foreach (var name in names) + { + c.WriteLine($" {name}"); + } + + c.WriteLine($"{names.Count} def(s)"); + }); + + console.Register("atlas", "atlas [name] [filter] — inspect loaded texture atlases", (c, args) => + { + if (args.Length == 0) + { + foreach (var (name, atlas) in atlases.Loaded.OrderBy(a => a.Key, StringComparer.Ordinal)) + { + c.WriteLine($" {name}: {atlas.Pages.Count} page(s), {atlas.Regions.Count} region(s)"); + } + + c.WriteLine($"{atlases.Loaded.Count} atlas(es) loaded"); + return; + } + + if (!atlases.Loaded.TryGetValue(args[0], out var found)) + { + c.WriteLine($"atlas '{args[0]}' is not loaded; loaded: {string.Join(", ", atlases.Loaded.Keys)}"); + return; + } + + var filter = args.Length > 1 ? args[1] : null; + var keys = found.Regions.Keys + .Where(k => filter is null || k.Contains(filter, StringComparison.OrdinalIgnoreCase)) + .Order(StringComparer.Ordinal) + .ToList(); + foreach (var key in keys.Take(25)) + { + c.WriteLine($" {key}"); + } + + c.WriteLine($"{keys.Count} region(s){(keys.Count > 25 ? ", showing first 25" : "")}"); + }); + } +} diff --git a/src/LittleSim/Scenes/TerrainScene.cs b/src/LittleSim/Scenes/TerrainScene.cs index 2ba6c9e..efab833 100644 --- a/src/LittleSim/Scenes/TerrainScene.cs +++ b/src/LittleSim/Scenes/TerrainScene.cs @@ -1,8 +1,8 @@ using Friflo.Engine.ECS; +using LittleSim.Content; using LittleSim.Sim; using Microsoft.Xna.Framework; using MrGameEng.Assets; -using MrGameEng.Atlases; using MrGameEng.Collisions; using MrGameEng.Core; using MrGameEng.DevConsole; @@ -15,9 +15,9 @@ using Myra.Graphics2D.UI; namespace LittleSim.Scenes; /// -/// Демо-сцена тайлового террейна: небольшая карта-Tilemap, сгенерированная по сиду -/// (вода и горы — тонированные тайлы, трава и лес — текстуры из атласа), пара бродящих -/// персонажей и несколько объектов. Команды консоли: "regen [seed]", "world". +/// Демо-сцена тайлового террейна: карта-Tilemap по дефам рельефа (поверхность из атласа +/// или тонированный тайл), растительность по скаттеру дефов (деревья — с коллайдером +/// ствола), животные — дефы вида "animal" с расталкиванием. Команды: "regen", "world". /// public sealed class TerrainScene : Scene { @@ -28,27 +28,6 @@ public sealed class TerrainScene : Scene private static readonly RectF TerrainBounds = new(0f, 0f, TerrainWidth * CellSize, TerrainHeight * CellSize); - /// Животные из атласа pawn: ключ региона (вид сбоку) + размер в клетках. - private static readonly (string Key, float Cells)[] Animals = - [ - ("things/pawn/animal/bear/Bear_east", 1.7f), - ("things/pawn/animal/deer/DeerFemale_east", 1.4f), - ("things/pawn/animal/deer/DeerMale_east", 1.6f), - ("things/pawn/animal/fox_red/Fox_Red_east", 1.0f), - ("things/pawn/animal/hare/Hare_east", 0.7f), - ("things/pawn/animal/wildboar/WildBoar_east", 1.2f), - ("things/pawn/animal/wolf_timber/Wolf_Timber_east", 1.4f), - ("things/pawn/animal/muffalo/Muffalo_east", 1.8f), - ("things/pawn/animal/squirrel/Squirrel_east", 0.6f), - ]; - - private static readonly string[] Bushes = - [ - "things/plant/bush/BushA", - "things/plant/bush/BushB", - "things/plant/bush/BushC", - ]; - private const uint AnimalLayer = 0b01; private const uint ObstacleLayer = 0b10; @@ -59,88 +38,67 @@ public sealed class TerrainScene : Scene protected override void OnLoad() { var assets = Context.Services.GetOrDefault() ?? Context.UseAssets(); - Context.UseTextureAtlases(); + var content = Context.Services.Get(); + var atlases = Context.Services.Get(); + var device = Context.GraphicsDevice; var input = this.UseInput(); var renderer = this.UseRenderer2D(new Renderer2DOptions { VirtualResolution = new Point(1280, 720) }); GameLayers.EnsureRegistered(renderer); this.UseTilemaps(); var white = new Texture2DRegion(assets.Load(GameAssets.Textures.White)); - var terrainAtlas = assets.Load(GameAssets.Atlases.TerrainSurfaces); - var pawnAtlas = assets.Load(GameAssets.Atlases.ThingsPawn); - var plantAtlas = assets.Load(GameAssets.Atlases.ThingsPlant); - // Тайлсет: вода — тонированная белая текстура, суша — поверхности из атласа - // (песок, мох под траву, почва под лес, скала под горы). + // Тайлсет из дефов: у дефа есть поверхность — текстура из атласа, нет — тонированный тайл. var tiles = new TileSet(); - var tileByKind = new Dictionary + var tileByDef = new Dictionary(); + foreach (var terrain in content.Terrains.All) { - [TerrainKind.DeepWater] = tiles.Add(white, new Color(23, 63, 95)), - [TerrainKind.Water] = tiles.Add(white, new Color(32, 99, 155)), - [TerrainKind.Sand] = tiles.Add(terrainAtlas.GetRegion("terrain/surfaces/sand")), - [TerrainKind.Grass] = tiles.Add(terrainAtlas.GetRegion("terrain/surfaces/mossy")), - [TerrainKind.Forest] = tiles.Add(terrainAtlas.GetRegion("terrain/surfaces/soil")), - [TerrainKind.Mountain] = tiles.Add(terrainAtlas.GetRegion("terrain/surfaces/roughhewnrock")), - }; + tileByDef[terrain] = terrain.Surface is { } surface + ? tiles.Add(atlases.GetRegion(device, surface)) + : tiles.Add(white, terrain.Tint); + } - // Террейн строится кодом: высоты по сиду → вид клетки → id тайла в гриде. - // Поверх травы — пучки травы и кусты, поверх леса — деревья (с коллайдером ствола). + // Террейн строится кодом: высоты по сиду → деф клетки → id тайла; поверх — скаттер. var random = new Random(_seed); var heights = WorldGenerator.GenerateHeights(TerrainWidth, TerrainHeight, _seed); var grid = new TileGrid(TerrainWidth, TerrainHeight); var landCells = new List(); - var grassRegion = plantAtlas.GetRegion("things/plant/grass/grassa"); for (var x = 0; x < TerrainWidth; x++) { for (var y = 0; y < TerrainHeight; y++) { - var kind = WorldGenerator.Classify(heights[x, y]); - grid[x, y] = tileByKind[kind]; + var terrain = content.Terrains.Classify(heights[x, y]); + grid[x, y] = tileByDef[terrain]; var cell = new Point(x, y); - if (WorldGenerator.IsLand(kind)) + if (terrain.IsLand) { landCells.Add(cell); } - switch (kind) - { - case TerrainKind.Forest when random.NextSingle() < 0.3f: - var tree = SpawnOnCell( - plantAtlas.GetRegion( - "things/plant/" + WorldScene.ForestTrees[random.Next(WorldScene.ForestTrees.Length)]), - cell, random, sizeCells: 2.2f); - var trunk = MrGameEng.Collisions.Collider.Circle(CellSize * 0.28f); - trunk.Layer = ObstacleLayer; - trunk.CollidesWith = AnimalLayer; - tree.AddComponent(trunk); - break; - case TerrainKind.Grass when random.NextSingle() < 0.35f: - SpawnOnCell(grassRegion, cell, random, sizeCells: 1.1f + random.NextSingle() * 0.4f); - break; - case TerrainKind.Grass when random.NextSingle() < 0.07f: - SpawnOnCell(plantAtlas.GetRegion(Bushes[random.Next(Bushes.Length)]), cell, random, sizeCells: 1.4f); - break; - } + ScatterSpawner.Spawn( + this, content, atlases, device, terrain, cell, CellSize, random, + obstacleLayer: ObstacleLayer, collidesWith: AnimalLayer); } } Store.CreateEntity(new Tilemap(grid, tiles, CellSize)); - // Животные: бродят по террейну, не наслаиваются (коллайдеры + расталкивание). - for (var i = 0; i < Population && landCells.Count > 0; i++) + // Животные: дефы вида "animal", не наслаиваются (коллайдеры + расталкивание). + var animals = content.Defs.All().Where(p => p.Kind == PawnDef.KindAnimal).ToList(); + for (var i = 0; i < Population && landCells.Count > 0 && animals.Count > 0; i++) { var cell = landCells[random.Next(landCells.Count)]; - var (key, sizeCells) = Animals[random.Next(Animals.Length)]; - var body = pawnAtlas.GetRegion(key); + var animal = animals[random.Next(animals.Count)]; + var body = atlases.GetRegion(device, animal.Texture); var sprite = new Sprite(body, GameLayers.Beings); sprite.CenterOrigin(); - var collider = MrGameEng.Collisions.Collider.Circle(sizeCells * CellSize * 0.32f); + var collider = Collider.Circle(animal.SizeCells * CellSize * 0.32f); collider.Layer = AnimalLayer; collider.CollidesWith = AnimalLayer | ObstacleLayer; Store.CreateEntity( new Transform2D( new Vector2((cell.X + 0.5f) * CellSize, (cell.Y + 0.5f) * CellSize), - scale: new Vector2(CellSize * sizeCells / body.Width)), + scale: new Vector2(CellSize * animal.SizeCells / body.Width)), sprite, new Wander(), collider); @@ -151,9 +109,9 @@ public sealed class TerrainScene : Scene var desktop = this.UseUI(); var hudLabel = new Label { Left = 10, Top = 8 }; desktop.Root = hudLabel; - hudLabel.Text = $"LittleSim | террейн | seed {_seed} | животных: {Population}\nWASD — камера, колесо — зум, ` — консоль ('regen', 'world')"; var console = this.UseDevConsole(); + ContentCommands.Register(console, content, atlases); console.Register("regen", "regen [seed] — regenerate the terrain", (c, args) => { if (Context.Scenes.IsTransitioning) @@ -180,21 +138,8 @@ public sealed class TerrainScene : Scene var collisions = this.UseCollisions(cellSize: CellSize * 2f); // после движения UpdateSystems.Add(new SeparationSystem(collisions)); UpdateSystems.Add(new GodCameraSystem(camera, input, console)); + UpdateSystems.Add(new HudSystem(Context, content.Languages, hudLabel, "hud.terrain", _seed, Population)); Log.Info($"Terrain generated: seed {_seed}, {TerrainWidth}x{TerrainHeight} cells, {Population} animals"); } - - /// Ставит объект на клетку с лёгким смещением; масштаб задаётся в клетках. - private Entity SpawnOnCell(Texture2DRegion region, Point cell, Random random, float sizeCells) - { - var sprite = new Sprite(region, GameLayers.Beings); - sprite.CenterOrigin(); - return Store.CreateEntity( - new Transform2D( - new Vector2( - (cell.X + 0.3f + random.NextSingle() * 0.4f) * CellSize, - (cell.Y + 0.3f + random.NextSingle() * 0.4f) * CellSize), - scale: new Vector2(CellSize * sizeCells / region.Width)), - sprite); - } } diff --git a/src/LittleSim/Scenes/WorldScene.cs b/src/LittleSim/Scenes/WorldScene.cs index dba46ba..523f2eb 100644 --- a/src/LittleSim/Scenes/WorldScene.cs +++ b/src/LittleSim/Scenes/WorldScene.cs @@ -1,8 +1,8 @@ using Friflo.Engine.ECS; +using LittleSim.Content; using LittleSim.Sim; using Microsoft.Xna.Framework; using MrGameEng.Assets; -using MrGameEng.Atlases; using MrGameEng.Core; using MrGameEng.DevConsole; using MrGameEng.Graphics; @@ -13,8 +13,9 @@ using Myra.Graphics2D.UI; namespace LittleSim.Scenes; /// -/// Мир LittleSim: сгенерированный по сиду рельеф (клетки-спрайты) и жители, бродящие по нему. -/// Камера бога, HUD и консоль с командой "regen [seed]". +/// Мир LittleSim: рельеф, растения и жители целиком описаны дефами Core-мода +/// (Mods/Core/Defs), текстуры — атласами из дерева текстур модов, строки HUD — +/// локализацией. Камера бога, HUD и консоль ("regen", "terrain", "mods", "lang", …). /// public sealed class WorldScene : Scene { @@ -29,27 +30,20 @@ public sealed class WorldScene : Scene public WorldScene(int seed) => _seed = seed; - internal static readonly string[] BeingBodies = - ["FurCovered_Male", "FurCovered_Female", "FurCovered_Thin", "FurCovered_Fat", "FurCovered_Hulk"]; - - internal static readonly string[] ForestTrees = - ["treeoak/TreeOakA", "treeoak/TreeOakB", "treebirch/TreeBirchA", "treegraypine/TreeGrayPineA"]; - protected override void OnLoad() { var assets = Context.Services.GetOrDefault() ?? Context.UseAssets(); - Context.UseTextureAtlases(); + var content = Context.Services.Get(); + var atlases = Context.Services.Get(); + var device = Context.GraphicsDevice; var input = this.UseInput(); var renderer = this.UseRenderer2D(new Renderer2DOptions { VirtualResolution = new Point(1280, 720) }); GameLayers.EnsureRegistered(renderer); var white = new Texture2DRegion(assets.Load(GameAssets.Textures.White)); - // Атласы: собраны утилитой движка из textures/ (см. CLAUDE.md, раздел «Атласы»). - var pawnAtlas = assets.Load(GameAssets.Atlases.ThingsPawn); - var plantAtlas = assets.Load(GameAssets.Atlases.ThingsPlant); - - // Рельеф: одна текстура на все клетки → один draw call на слой. + // Рельеф: одна текстура на все клетки → один draw call на слой; + // тип клетки и растительность приходят из TerrainDef'ов. var random = new Random(_seed); var heights = WorldGenerator.GenerateHeights(WorldWidth, WorldHeight, _seed); var landCells = new List(); @@ -57,45 +51,34 @@ public sealed class WorldScene : Scene { for (var y = 0; y < WorldHeight; y++) { - var kind = WorldGenerator.Classify(heights[x, y]); + var terrain = content.Terrains.Classify(heights[x, y]); Store.CreateEntity( Transform2D.At(new Vector2(x * CellSize, y * CellSize)), - new Sprite(white) { Color = WorldGenerator.ColorOf(kind) }); - if (WorldGenerator.IsLand(kind)) + new Sprite(white) { Color = terrain.Tint }); + + var cell = new Point(x, y); + if (terrain.IsLand) { - landCells.Add(new Point(x, y)); + landCells.Add(cell); } - // Лес получает деревья из атласа растений (Y-sort: жители ходят между ними). - if (kind == TerrainKind.Forest && random.NextSingle() < 0.35f) - { - var tree = plantAtlas.GetRegion("things/plant/" + ForestTrees[random.Next(ForestTrees.Length)]); - var treeSprite = new Sprite(tree, GameLayers.Beings); - treeSprite.CenterOrigin(); - Store.CreateEntity( - new Transform2D( - new Vector2( - (x + 0.3f + random.NextSingle() * 0.4f) * CellSize, - (y + 0.3f + random.NextSingle() * 0.4f) * CellSize), - scale: new Vector2(CellSize * 1.7f / tree.Width)), - treeSprite); - } + ScatterSpawner.Spawn(this, content, atlases, device, terrain, cell, CellSize, random); } } - // Жители: тела из атласа пешек, появляются на суше, бродят - // (Y-sort слой — кто ниже, тот ближе). - for (var i = 0; i < Population && landCells.Count > 0; i++) + // Жители: дефы вида "being", появляются на суше, бродят (Y-sort: кто ниже — ближе). + var beings = content.Defs.All().Where(p => p.Kind == PawnDef.KindBeing).ToList(); + for (var i = 0; i < Population && landCells.Count > 0 && beings.Count > 0; i++) { var cell = landCells[random.Next(landCells.Count)]; - var body = pawnAtlas.GetRegion( - "things/pawn/humanlike/bodies/" + BeingBodies[random.Next(BeingBodies.Length)] + "_south"); + var being = beings[random.Next(beings.Count)]; + var body = atlases.GetRegion(device, being.Texture); var sprite = new Sprite(body, GameLayers.Beings); sprite.CenterOrigin(); Store.CreateEntity( new Transform2D( new Vector2((cell.X + 0.5f) * CellSize, (cell.Y + 0.5f) * CellSize), - scale: new Vector2(CellSize * 1.1f / body.Width)), + scale: new Vector2(CellSize * being.SizeCells / body.Width)), sprite, new Wander()); } @@ -108,6 +91,7 @@ public sealed class WorldScene : Scene desktop.Root = hudLabel; var console = this.UseDevConsole(); + ContentCommands.Register(console, content, atlases); console.Register("regen", "regen [seed] — regenerate the world", (c, args) => { if (Context.Scenes.IsTransitioning) @@ -120,42 +104,6 @@ public sealed class WorldScene : Scene Context.Scenes.Switch(new WorldScene(seed), Transition.Fade(0.6f)); }); - var atlases = new Dictionary(StringComparer.OrdinalIgnoreCase) - { - [pawnAtlas.Name] = pawnAtlas, - [plantAtlas.Name] = plantAtlas, - }; - console.Register("atlas", "atlas [name] [filter] — inspect loaded texture atlases", (c, args) => - { - if (args.Length == 0) - { - foreach (var (name, atlas) in atlases.OrderBy(a => a.Key, StringComparer.Ordinal)) - { - c.WriteLine($"{name}: {atlas.Pages.Count} page(s), {atlas.Regions.Count} region(s)"); - } - - return; - } - - if (!atlases.TryGetValue(args[0], out var found)) - { - c.WriteLine($"unknown atlas '{args[0]}'; loaded: {string.Join(", ", atlases.Keys)}"); - return; - } - - var filter = args.Length > 1 ? args[1] : null; - var keys = found.Regions.Keys - .Where(k => filter is null || k.Contains(filter, StringComparison.OrdinalIgnoreCase)) - .Order(StringComparer.Ordinal) - .ToList(); - foreach (var key in keys.Take(25)) - { - c.WriteLine($" {key}"); - } - - c.WriteLine($"{keys.Count} region(s){(keys.Count > 25 ? ", showing first 25" : "")}"); - }); - console.Register("terrain", "terrain [seed] — switch to the tile terrain scene", (c, args) => { if (Context.Scenes.IsTransitioning) @@ -170,7 +118,7 @@ public sealed class WorldScene : Scene UpdateSystems.Add(new WanderSystem(_seed, WorldBounds)); UpdateSystems.Add(new GodCameraSystem(camera, input, console)); - UpdateSystems.Add(new HudSystem(Context, hudLabel, _seed, Population)); + UpdateSystems.Add(new HudSystem(Context, content.Languages, hudLabel, "hud.world", _seed, Population)); Log.Info($"World generated: seed {_seed}, {WorldWidth}x{WorldHeight} cells, population {Population}"); } diff --git a/src/LittleSim/Sim/SimSystems.cs b/src/LittleSim/Sim/SimSystems.cs index 0aa3650..df25dfb 100644 --- a/src/LittleSim/Sim/SimSystems.cs +++ b/src/LittleSim/Sim/SimSystems.cs @@ -131,9 +131,17 @@ public sealed class GodCameraSystem( (input.IsKeyDown(negativeA) || input.IsKeyDown(negativeB) ? 1f : 0f); } -/// Строка статуса в HUD: сид, население, FPS (обновляется 4 раза в секунду). +/// +/// Строка статуса в HUD: заголовок сцены (ключ локализации с сидом, населением и FPS) +/// и подсказка управления. Обновляется 4 раза в секунду; смена языка подхватывается сама. +/// public sealed class HudSystem( - MrGameEng.Core.EngineContext context, Myra.Graphics2D.UI.Label label, int seed, int population) : BaseSystem + MrGameEng.Core.EngineContext context, + MrGameEng.Mods.LanguageManager languages, + Myra.Graphics2D.UI.Label label, + string titleKey, + int seed, + int population) : BaseSystem { private float _accumulated; private int _frames; @@ -147,9 +155,9 @@ public sealed class HudSystem( return; } - var fps = _frames / _accumulated; + var fps = (int)MathF.Round(_frames / _accumulated); _accumulated = 0f; _frames = 0; - label.Text = $"LittleSim | seed {seed} | население {population} | {fps:F0} FPS\nWASD — камера, колесо — зум, ` — консоль ('regen', 'terrain', 'timescale', 'atlas')"; + label.Text = languages.Format(titleKey, seed, population, fps) + "\n" + languages.Get("hud.controls"); } } diff --git a/src/LittleSim/Sim/WorldGenerator.cs b/src/LittleSim/Sim/WorldGenerator.cs index e8d171c..e02d3e9 100644 --- a/src/LittleSim/Sim/WorldGenerator.cs +++ b/src/LittleSim/Sim/WorldGenerator.cs @@ -1,21 +1,9 @@ -using Microsoft.Xna.Framework; - namespace LittleSim.Sim; -/// Тип клетки мира по высоте рельефа. -public enum TerrainKind -{ - DeepWater, - Water, - Sand, - Grass, - Forest, - Mountain, -} - /// /// Детерминированная генерация рельефа: случайное поле, сглаженное несколькими проходами. /// Один и тот же сид всегда даёт один и тот же мир — фундамент воспроизводимой симуляции. +/// Классификация высот в типы клеток живёт в дефах (). /// public static class WorldGenerator { @@ -66,30 +54,6 @@ public static class WorldGenerator return heights; } - public static TerrainKind Classify(float height) => height switch - { - < 0.30f => TerrainKind.DeepWater, - < 0.42f => TerrainKind.Water, - < 0.48f => TerrainKind.Sand, - < 0.68f => TerrainKind.Grass, - < 0.85f => TerrainKind.Forest, - _ => TerrainKind.Mountain, - }; - - public static Color ColorOf(TerrainKind kind) => kind switch - { - TerrainKind.DeepWater => new Color(23, 63, 95), - TerrainKind.Water => new Color(32, 99, 155), - TerrainKind.Sand => new Color(237, 201, 120), - TerrainKind.Grass => new Color(90, 160, 70), - TerrainKind.Forest => new Color(44, 110, 50), - TerrainKind.Mountain => new Color(136, 132, 128), - _ => Color.Magenta, - }; - - public static bool IsLand(TerrainKind kind) => - kind is TerrainKind.Sand or TerrainKind.Grass or TerrainKind.Forest; - private static void Normalize(float[,] heights, int width, int height) { var min = float.MaxValue;